mirror of https://github.com/ArduPilot/ardupilot
AP_Filesystem: crc32: Ensure checksum value is initialized
This commit is contained in:
parent
431ef6b4ba
commit
312061b76c
|
@ -290,6 +290,9 @@ bool AP_Filesystem::fgets(char *buf, uint8_t buflen, int fd)
|
|||
// run crc32 over file with given name, returns true if successful
|
||||
bool AP_Filesystem::crc32(const char *fname, uint32_t& checksum)
|
||||
{
|
||||
// Ensure value is initialized
|
||||
checksum = 0;
|
||||
|
||||
// Open file in readonly mode
|
||||
int fd = open(fname, O_RDONLY);
|
||||
if (fd == -1) {
|
||||
|
|
Loading…
Reference in New Issue