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 encounter a question when reading the source code in "param.cpp" at line 205: "if (size == sizeof(ptr)) break;". I think this condition is used to check if the index size is out of range of array ptr, and it should be "if (size == sizeof(ptr)/sizeof(char *)) break;".
I'm not sure if my idea is right. ..
The text was updated successfully, but these errors were encountered:
I encounter a question when reading the source code in "param.cpp" at line 205: "if (size == sizeof(ptr)) break;". I think this condition is used to check if the index
size
is out of range of arrayptr
, and it should be "if (size == sizeof(ptr)/sizeof(char *)) break;".I'm not sure if my idea is right. ..
The text was updated successfully, but these errors were encountered: