[report] Fix odin report crash if /usr/lib/os-release doesn't exist.

This commit is contained in:
Jeroen van Rijn
2022-02-22 17:08:57 +01:00
parent e6a7b85da4
commit 2b5bc1d558
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -6093,6 +6093,7 @@ gbFileContents gb_file_read_contents(gbAllocator a, b32 zero_terminate, char con
}
void gb_file_free_contents(gbFileContents *fc) {
if (fc == NULL || fc->size == 0) return;
GB_ASSERT_NOT_NULL(fc->data);
gb_free(fc->allocator, fc->data);
fc->data = NULL;