Skip to content

Commit

Permalink
Merge pull request #113 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
elf2cfetbl Integration candidate: Caelum-rc4+dev10
  • Loading branch information
astrogeco committed May 31, 2022
2 parents fbf0a0d + aaa23a5 commit b6aa1c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ See README.txt for more information.

## Version History

### Development Build: v3.3.0-rc4+dev24

- Resolve uninit var static analysis warnings
- See <https://github.com/nasa/elf2cfetbl/pull/113> and <https://github.com/nasa/cFS/pull/492>

### Development Build: v3.3.0-rc4+dev18

- Update Copyright Headers
Expand Down
3 changes: 3 additions & 0 deletions elf2cfetbl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1883,6 +1883,9 @@ int32 GetSymbol(int32 SymbolIndex, union Elf_Sym *Symbol)
int32_t SeekOffset = (int32_t)calculated_offset;
char VerboseStr[60];
int32 i = 0;

memset(VerboseStr, 0, sizeof(VerboseStr));

if (SeekOffset != calculated_offset)
{
printf("Error: SeekOffset may not be %lu\n", (long unsigned int)calculated_offset);
Expand Down
2 changes: 1 addition & 1 deletion elf2cfetbl_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
/*
* Development Build Macro Definitions
*/
#define ELF2CFETBL_BUILD_NUMBER 18 /*!< @brief Number of commits since baseline */
#define ELF2CFETBL_BUILD_NUMBER 24 /*!< @brief Number of commits since baseline */
#define ELF2CFETBL_BUILD_BASELINE \
"v3.3.0-rc4" /*!< @brief Development Build: git tag that is the base for the current */

Expand Down

0 comments on commit b6aa1c0

Please sign in to comment.