diff options
Diffstat (limited to 'ext/mysqlnd/mysqlnd_statistics.c')
-rw-r--r-- | ext/mysqlnd/mysqlnd_statistics.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/mysqlnd/mysqlnd_statistics.c b/ext/mysqlnd/mysqlnd_statistics.c index ca3967e215..0f83e93324 100644 --- a/ext/mysqlnd/mysqlnd_statistics.c +++ b/ext/mysqlnd/mysqlnd_statistics.c @@ -240,6 +240,7 @@ void mysqlnd_stats_init(MYSQLND_STATS ** stats) { *stats = calloc(1, sizeof(MYSQLND_STATS)); + (*stats)->handlers = calloc(STAT_LAST, sizeof(mysqlnd_stat_handler)); #ifdef ZTS (*stats)->LOCK_access = tsrm_mutex_alloc(); #endif @@ -255,6 +256,7 @@ mysqlnd_stats_end(MYSQLND_STATS * stats) #ifdef ZTS tsrm_mutex_free(stats->LOCK_access); #endif + free(stats->handlers); /* mnd_free will reference LOCK_access and crash...*/ free(stats); } |