TONY: Fix potential memory leak

Unfortunately, I'm not sure where and when this function is called.
But this should be correct. CID 1003575
This commit is contained in:
Torbjörn Andersson 2013-06-02 22:00:25 +02:00
parent 52be12830b
commit 9d28a6f531

@ -521,14 +521,15 @@ static LpItem getItemData(uint32 nOrdItem) {
dat += dim;
}
// Check if we've got to the end of the file
int i = READ_LE_UINT16(dat);
if (i != 0xABCD)
return NULL;
globalUnlock(hDat);
globalFree(hDat);
// Check if we've got to the end of the file
if (i != 0xABCD)
return NULL;
return ret;
}