From db598fbce2af2cc7c835b0e10253f49dda5b1b41 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 3 Apr 2003 20:03:23 +0000 Subject: [PATCH] Don't try to free NULL values... --- apps/apps.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/apps/apps.c b/apps/apps.c index bdd14dd51b..6092c395e5 100644 --- a/apps/apps.c +++ b/apps/apps.c @@ -1873,6 +1873,9 @@ int rotate_index(char *dbfile, char *new_suffix, char *old_suffix) void free_index(CA_DB *db) { - TXT_DB_free(db->db); - OPENSSL_free(db); + if (db) + { + if (db->db) TXT_DB_free(db->db); + OPENSSL_free(db); + } } -- 2.25.1