Temporary hack to fix bustage from bug 333129

This commit is contained in:
gavin%gavinsharp.com 2006-09-24 15:53:37 +00:00
Родитель 69e087ac29
Коммит 72bffd2719
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -696,7 +696,8 @@ nsZipArchive::FindInit(const char * aPattern, nsZipFind **aFind)
// Create synthetic directory entries on demand
nsresult rv = BuildSynthetics();
if (NS_FAILED(rv)) return rv;
// XXX NS_FAILED doesn't exist when building STANDALONE
if (rv & 0x80000000) return rv;
// validate the pattern
if (aPattern)