mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 00:41:02 +00:00
Was checking incorrect variable to avoid assignment to nul pointer.
This commit is contained in:
parent
4e826135ce
commit
4d0dc010ab
1 changed files with 1 additions and 1 deletions
|
@ -1060,7 +1060,7 @@ typedef GSString *ivars;
|
|||
result *= e;
|
||||
}
|
||||
|
||||
if (0 != result)
|
||||
if (0 != value)
|
||||
{
|
||||
if (YES == negativeMantissa)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue