-
-
Notifications
You must be signed in to change notification settings - Fork 34
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
cppcheck Static Code analysis: "Medium" risk for not initializing _lastSend #63
Comments
@Schallbert Normal process for contributing follows this path:
BUT, There are two issues you bring up; one has a reason not to fix the other is a valid one. A) initialize _lastSend in the constructor: B) There is no blocking of a default constructor by declaring a private one: |
Hi and thanks for the quick answer. for B) I think I created a misunderstanding. I mean the static code checker would list as a weakness on a verbose debug build that the |
@Makuna BTW how can I learn about what costs how much program memory and at what point RAM usage forecast goes up (as a compile output)? I have a feeling that dynamic allocation cannot show up there at all. I'm struggling on 2k/4k flash systems that cannot even take the debug build because it is non-optimized and thus much bigger than the release build. |
At the end of compile, you get a summary like:
The above compared to a defaule initialization using {}
Note, this is AVR (mega) compile. If I used Esp8266 there is no difference between uninitialized versus initialized. I suspect a compiler difference. Correct, dynamic allocations can only be tested while running, with calls to system methods that provide info for free heap and free stack and can be platform dependent. |
OK OK, so you're not actually calculating that yourself ^^ that's helpful, yes. When I compare my compilation with and without initialization of the value, I even get 16Bytes more. Well, nevermind then, keep A) like it is. |
adding the explicit makes sense, go ahead and make a pull; check the compile times ;-) |
Leave A) as is to save progmem.
Compile time ABA test shows: Jitter. No effect as postulated. PR created. Closed. |
Usually wait until your changes are merged in to close the issue associated with it. But that is done now. |
Hi @Makuna, I'm using your lightweight library in one of my projects and just for fun ran a static code checker tool.

According to that, there is 1 medium risk item for not initializing
_lastSend
upon construction, fix would be easy:Lines 396/397,
If I had the rights on the repo, I'd create a branch and a PR myself.
There is another issue from that check that's more... ehm... individual style I believe. It is because the template class has a constructor that is not explicit. Well, that's up to your personal taste - just for completeness' sake.
The text was updated successfully, but these errors were encountered: