-
Notifications
You must be signed in to change notification settings - Fork 6
Unused assignment #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hello, sorry for a really long late reply. I just seen this. iirc it is used to free up a statements. statements that requires one time use only, but another alternative is to bump up the value of |
I didn't mean the whole function, I only meant the line |
After reading, it makes sense! Thanks for bringing this up. #4 # |
The following code in function
stmt_close()
looks suspicious:MySQL-Prepared-Statements/mysql_prepared.inc
Lines 123 to 127 in 3c781e5
The assignment
statement = INVALID_STATEMENT;
seems to be unused (statement
is neither passed by reference nor a global variable). Was this intended?The text was updated successfully, but these errors were encountered: