We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The diff provided shows changes made to the tl_jni_object.cpp file in the ton-blockchain/ton repository. Here is the difference: A line was added after line 117: ++i; The original line 119: unsigned int next = p[++i]; was modified to: unsigned int next = p[i]; Overall, the code now increments i earlier in the loop, before checking the value of the next element in the array.
The diff provided shows changes made to the tl_jni_object.cpp file in the ton-blockchain/ton repository. Here is the difference:
tl_jni_object.cpp
ton-blockchain/ton
A line was added after line 117:
++i;
The original line 119:
unsigned int next = p[++i];
was modified to:
unsigned int next = p[i];
Overall, the code now increments i earlier in the loop, before checking the value of the next element in the array.
i
Originally posted by @tytyr12 in 710514b
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Originally posted by @tytyr12 in 710514b
The text was updated successfully, but these errors were encountered: