Conversation
myc-yang
force-pushed
the
144-fix-useless-assignments
branch
from
September 10, 2026 19:40
f07dac9 to
39dfbb9
Compare
jphickey
requested changes
Sep 14, 2026
jphickey
left a comment
Contributor
There was a problem hiding this comment.
Coding standards say we should declare variables at the top of the function, not midway at the time of use.
Just keep all declarations at the beginning with no assignment, and assign later.
| CFE_ES_PerfLogEntry(CS_APPMAIN_PERF_ID); | ||
|
|
||
| /* Perform application-specific initialization */ | ||
| Result = CS_AppInit(); |
Contributor
There was a problem hiding this comment.
Just remove the assignment to CFE_SUCCESS and keep the declaration here.
Author
There was a problem hiding this comment.
So do you want a one line for a declaration and then a separate line for the assignment?
i.e.
CFE_Status_t Result;
Result = CS_AppInit();
myc-yang
force-pushed
the
144-fix-useless-assignments
branch
from
September 14, 2026 17:07
a430de2 to
e1239a3
Compare
…static code analysis
myc-yang
force-pushed
the
144-fix-useless-assignments
branch
from
September 16, 2026 11:16
e1239a3 to
0fb7d88
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
For members of the cFS Team
Click the
Previewtab and select the pull request template corresponding to the type of change you are submitting:Checklist (Please check before submitting)
Describe the contribution
Fixes #144
Testing performed
Static code analysis and Unit Tests
Expected behavior changes
No impact to behavior
System(s) tested on
Additional context
Add any other context about the contribution here.
Third party code
If included, identify any third party code and provide text file of license
Contributor Info - All information REQUIRED for consideration of pull request
Michael Yang / NASA/GSFC