Skip to content
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

Монета #1521

Closed
tytyr12 opened this issue Feb 13, 2025 · 0 comments
Closed

Монета #1521

tytyr12 opened this issue Feb 13, 2025 · 0 comments

Comments

@tytyr12
Copy link

tytyr12 commented Feb 13, 2025

The diff provided shows changes made to the tl_jni_object.cpp file in the ton-blockchain/ton repository. Here is the difference:

  1. A line was added after line 117:

    ++i;
    
  2. 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.

Originally posted by @tytyr12 in 710514b

@JohnnyGoGoGo JohnnyGoGoGo closed this as not planned Won't fix, can't repro, duplicate, stale Feb 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants