Thank you!
From: https://bugzilla.redhat.com/show_bug.cgi?id=2400880 filter.c:71:7: error: Return value of allocation function 'freopen' is not stored. [leakReturnValNotUsed] if (freopen(NULL, "w+b", imf) == NULL) die( errno, LOC ); Since freopen() returns either imf or NULL, cppcheck should accept this line of code. This error report is probably the result of some general logic from which freopen() should be exempted.
This fixes the crash on Fedora, thank you!
From: https://bugzilla.redhat.com/show_bug.cgi?id=2311947 Description of problem: I run cppcheck in a project that contains a file generated by flex which I want cppcheck to ignore. That's why I use the '-i' option. With the new version of cppcheck (2.15.0) issues in the ignored file are reported. Version-Release number of selected component (if applicable): 2.15.0-1.fc40 How reproducible: 100% (in the project) Steps to Reproduce: 1. git clone https://github.com/cfengine/core.git 2. cd core 3. ./autogen.sh...
Thank you!
Fix for build issue
Coredump crash upon first client connection
Works great on Fedora, thank you!