Error handling

This commit is contained in:
Sebastian Ramacher 2015-11-20 14:57:47 +01:00
parent 7f38470a9e
commit ff976d4854

View file

@ -672,7 +672,12 @@ zathura_db_read_key_file_from_file(const char* path)
free(content);
content = malloc(sizeof(char) * (dummy_len + 1));
content = memcpy(content, dummy_content, dummy_len + 1);
if (content == NULL)
{
g_key_file_free(key_file);
return NULL;
}
g_strlcat(content, dummy_content, dummy_len + 1);
contentlen = dummy_len;
}