Fix mg_unpacked() crash

This commit is contained in:
Sergey Lyubka 2024-12-18 09:57:18 +00:00
parent 1e1efa2c5e
commit 00c8f8acd0
2 changed files with 4 additions and 2 deletions

View File

@ -977,7 +977,8 @@ struct packed_file {
#if MG_ENABLE_PACKED_FS #if MG_ENABLE_PACKED_FS
#else #else
const char *mg_unpack(const char *path, size_t *size, time_t *mtime) { const char *mg_unpack(const char *path, size_t *size, time_t *mtime) {
*size = 0, *mtime = 0; if (size != NULL) *size = 0;
if (mtime != NULL) *mtime = 0;
(void) path; (void) path;
return NULL; return NULL;
} }

View File

@ -11,7 +11,8 @@ struct packed_file {
#if MG_ENABLE_PACKED_FS #if MG_ENABLE_PACKED_FS
#else #else
const char *mg_unpack(const char *path, size_t *size, time_t *mtime) { const char *mg_unpack(const char *path, size_t *size, time_t *mtime) {
*size = 0, *mtime = 0; if (size != NULL) *size = 0;
if (mtime != NULL) *mtime = 0;
(void) path; (void) path;
return NULL; return NULL;
} }