Fixed crashing bug in nsJAR.cpp - was dereferencing unallocated pointer. r=norris

This commit is contained in:
mstoltz%netscape.com 2000-02-02 01:58:37 +00:00
Родитель 33724881db
Коммит f1a821abf0
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,7 @@ ziperr2nsresult(PRInt32 ziperr)
#define JAR_NULLFREE(_ptr) \
{ \
PR_FREEIF(_ptr); \
*(_ptr) = nsnull; \
_ptr = nsnull; \
}
//-- Used by the JAR hashtables to delete their entries.