mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-26 06:21:03 +08:00
Fix mg_unpacked() crash
This commit is contained in:
parent
1e1efa2c5e
commit
00c8f8acd0
@ -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;
|
||||||
}
|
}
|
||||||
|
@ -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;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user