Fix AIX bustage.

This commit is contained in:
mcmullen%netscape.com 1999-04-02 23:46:20 +00:00
parent cd0823f0c6
commit 683b06bd7b
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ pref_FreeEntry(void *pool, PRHashEntry *he, uint flag)
}
if (flag == HT_FREE_ENTRY) {
PR_FREEIF((void*)he->key);
PR_FREEIF(*(void**)&he->key);
PR_Free(he);
}
}

View File

@ -140,7 +140,7 @@ pref_FreeEntry(void *pool, PRHashEntry *he, uint flag)
}
if (flag == HT_FREE_ENTRY) {
PR_FREEIF((void*)he->key);
PR_FREEIF(*(void**)&he->key);
PR_Free(he);
}
}