Fixing compiler warning "assignment in condition" (ARMCC)
This commit is contained in:
parent
4b31f87fc8
commit
16d1323d59
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@
|
|||
}
|
||||
|
||||
// We need to do this the hard way
|
||||
if ((new = gfxAlloc(sz)))
|
||||
new = gfxAlloc(sz);
|
||||
if (new)
|
||||
return 0;
|
||||
memcpy(new, ptr, p->sz - sizeof(memslot));
|
||||
gfxFree(ptr);
|
||||
|
|
Loading…
Add table
Reference in a new issue