Bugzilla Bug 334914: removed a useless null check. Contributed by

Ryan Jones <sciguyryan+bugzilla@gmail.com>.  r=wtc
This commit is contained in:
wtchang%redhat.com 2006-09-22 19:02:07 +00:00
Родитель 9fb73060ed
Коммит a326c3f815
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -516,7 +516,7 @@ int JAR_find_next (JAR_Context *ctx, JAR_Item **it)
*it = ctx->next->thing;
ctx->next = ctx->next->next;
if (!it || !*it || (*it)->type != finding)
if (!*it || (*it)->type != finding)
continue;
if (ctx->pattern && *ctx->pattern)