mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-21 18:30:20 +00:00
correct uninitialized value (offset)
This commit is contained in:
parent
cf28f647c7
commit
a844b4c51a
@ -14,36 +14,40 @@
|
||||
|
||||
int8_t* emile_second_get_configuration(int fd)
|
||||
{
|
||||
int8_t *conf = NULL;
|
||||
int8_t *conf;
|
||||
emile_l2_header_t header;
|
||||
int ret;
|
||||
int size;
|
||||
off_t offset;
|
||||
|
||||
memset(&header, 0, sizeof(header));
|
||||
|
||||
ret = read(fd, &header, sizeof(header));
|
||||
if (!EMILE_COMPAT(EMILE_06_SIGNATURE, read_long(&header.signature)))
|
||||
{
|
||||
off_t offset;
|
||||
offset = lseek(fd, FIRST_LEVEL_SIZE, SEEK_SET);
|
||||
ret = read(fd, &header, sizeof(header));
|
||||
if (!EMILE_COMPAT(EMILE_06_SIGNATURE, read_long(&header.signature)))
|
||||
goto exit;
|
||||
{
|
||||
lseek(fd, offset, SEEK_SET);
|
||||
return conf;
|
||||
}
|
||||
}
|
||||
|
||||
if (ret != sizeof(header))
|
||||
goto exit;
|
||||
return NULL;
|
||||
|
||||
size = read_short(&header.conf_size);
|
||||
conf = (int8_t*)malloc(size);
|
||||
if (conf == NULL)
|
||||
goto exit;
|
||||
return NULL;
|
||||
|
||||
ret = read(fd, conf, size);
|
||||
if (ret != size)
|
||||
{
|
||||
free(conf);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
exit:
|
||||
lseek(fd, offset, SEEK_SET);
|
||||
return conf;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user