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

False positive detection of USE_AFTER_DELETE in loop #1884

Open
conversy opened this issue Feb 18, 2025 · 0 comments
Open

False positive detection of USE_AFTER_DELETE in loop #1884

conversy opened this issue Feb 18, 2025 · 0 comments

Comments

@conversy
Copy link

Hi,

this error :

src/core/execution/graph.cpp:175: error: Use After Delete
  accessing `v` that was invalidated by `delete` on line 175. 
  173.     /* delete vertices from _vertices and clear */
  174.     for (auto* v : _vertices) {
  175.         delete v;
               ^
  176.     }
  177.     _vertices.clear ();


Found 1 issue
          Issue Type(ISSUED_TYPE_ID): #
  Use After Delete(USE_AFTER_DELETE): 1

seems a false positive (?), or I missed something very obvious... Same error if I use an iterator-based loop instead of a range-based loop.

Best regards.

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

1 participant