Fixed crash that occurs when the DLL is unloaded before being initialized first.

This commit is contained in:
Juan Carlos Luciani 2007-06-27 22:01:44 +00:00
parent 329787a5a4
commit 41cc9deb34

View File

@ -1367,6 +1367,8 @@ UnInitializeLibrary(void)
} }
pListEntry = g_ATSHostList.Flink; pListEntry = g_ATSHostList.Flink;
if (pListEntry)
{
while (pListEntry != &g_ATSHostList) while (pListEntry != &g_ATSHostList)
{ {
pHostEntry = CONTAINING_RECORD(pListEntry, ATSHostEntry, listEntry); pHostEntry = CONTAINING_RECORD(pListEntry, ATSHostEntry, listEntry);
@ -1376,6 +1378,7 @@ UnInitializeLibrary(void)
free(pHostEntry); free(pHostEntry);
pListEntry = g_ATSHostList.Flink; pListEntry = g_ATSHostList.Flink;
} }
}
DbgTrace(1, "-UnInitializeLibrary- End\n", 0); DbgTrace(1, "-UnInitializeLibrary- End\n", 0);
} }