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
[src/list.c:69]: (warning) Assignment of function parameter has no effect outside the function.
Assigning NULL to the node pointer will not have any effect outside the function, since the variable will be destroyed when the function terminates. Removing the line 69 would improve performance.
The text was updated successfully, but these errors were encountered:
cppcheck output:
Assigning NULL to the node pointer will not have any effect outside the function, since the variable will be destroyed when the function terminates. Removing the line 69 would improve performance.
The text was updated successfully, but these errors were encountered: