Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 3e820d9

Browse filesBrowse files
committed
Fix wrong assert: it was always true
1 parent acb20a6 commit 3e820d9
Copy full SHA for 3e820d9

File tree

1 file changed

+1
-1
lines changed
Filter options

1 file changed

+1
-1
lines changed

‎jsquery_support.c

Copy file name to clipboardExpand all lines: jsquery_support.c
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ void
256256
jsqIterateDestroy(JsQueryItem *v)
257257
{
258258
Assert(v->type == jqiArray);
259-
Assert(v->array.current <= v->array.current);
259+
Assert(v->array.current <= v->array.nelems);
260260
v->array.current++;
261261
}
262262

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.