You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found some strange code in the bp2ncd utility. In line 407 of np2ncd.c if (i==var_dims_count) {
I can't find where variable "i" is initialized. Should it be included in the else clause on line 376?
The text was updated successfully, but these errors were encountered:
You are right, something is illogical there.
I would assume there should be an i = 0; after line 359 because the true branch starting at line 360 does not set i. The false branch does with the for loop.
Hi:
I found some strange code in the bp2ncd utility. In line 407 of np2ncd.c
if (i==var_dims_count) {
I can't find where variable "i" is initialized. Should it be included in the else clause on line 376?
The text was updated successfully, but these errors were encountered: