mirror of
https://github.com/reactos/reactos.git
synced 2025-06-03 16:30:26 +00:00
Fix typo
svn path=/trunk/; revision=29129
This commit is contained in:
parent
2136c852eb
commit
b733bd322e
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ StringTableInitialize(VOID)
|
|||
pStringTable->pSlots = MyMalloc(sizeof(TABLE_SLOT) * TABLE_DEFAULT_SIZE);
|
||||
if (pStringTable->pSlots == NULL)
|
||||
{
|
||||
MyFree(pStringTable->pSlots);
|
||||
MyFree(pStringTable);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -122,7 +122,7 @@ StringTableInitializeEx(DWORD dwMaxExtraDataSize,
|
|||
pStringTable->pSlots = MyMalloc(sizeof(TABLE_SLOT) * TABLE_DEFAULT_SIZE);
|
||||
if (pStringTable->pSlots == NULL)
|
||||
{
|
||||
MyFree(pStringTable->pSlots);
|
||||
MyFree(pStringTable);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue