diff options
Diffstat (limited to 'source3/lib/time.c')
-rw-r--r-- | source3/lib/time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c index 88be3fa334..f5cd96223c 100644 --- a/source3/lib/time.c +++ b/source3/lib/time.c @@ -145,7 +145,7 @@ static int TimeZoneFaster(time_t t) sizeof(dst_table[0])*(i+1)); if (!tdt) { DEBUG(0,("TimeZoneFaster: out of memory!\n")); - if (dst_table) free (dst_table); + SAFE_FREE(dst_table); table_size = 0; } else { dst_table = tdt; |