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: CPP UninitializedLocal #42

Open
bdrodes opened this issue Jan 29, 2024 · 0 comments
Open

False Positive: CPP UninitializedLocal #42

bdrodes opened this issue Jan 29, 2024 · 0 comments

Comments

@bdrodes
Copy link

bdrodes commented Jan 29, 2024

#include <iostream>
using namespace std;
class Test{
    static void printMsg(){
        cout << "Hello World!";
    }
};

int main(){
    Test *t;
    t->printMsg();
}

The t->printMsg() appears to be invalid, but in C++ a static method can be accessed in this manner. Alter the UninitializedLocal.ql query to filter calls to static methods.

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

When branches are created from issues, their pull requests are automatically linked.

1 participant