Merge pull request #2991 from cesanta/unpacked_crash

Fix mg_unpacked() crash
This commit is contained in:
Sergey Lyubka 2024-12-18 11:07:27 +00:00 committed by GitHub
commit 7b296fabb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -977,7 +977,8 @@ struct packed_file {
#if MG_ENABLE_PACKED_FS
#else
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;
return NULL;
}

View File

@ -11,7 +11,8 @@ struct packed_file {
#if MG_ENABLE_PACKED_FS
#else
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;
return NULL;
}