зеркало из https://github.com/mozilla/pjs.git
Bugzilla Bug 334914: removed a useless null check. Contributed by
Ryan Jones <sciguyryan+bugzilla@gmail.com>. r=wtc
This commit is contained in:
Родитель
a18e1186a9
Коммит
4b203c498c
|
@ -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)
|
||||
|
|
Загрузка…
Ссылка в новой задаче