From: Matthew Booth Date: Fri, 13 Aug 2010 16:44:28 +0000 (+0100) Subject: Add debug output to hivex_close. X-Git-Tag: 1.2.3~3 X-Git-Url: http://git.annexia.org/?a=commitdiff_plain;h=eb18b66d08225b822680b132464527933b929ba2;p=hivex.git Add debug output to hivex_close. --- diff --git a/lib/hivex.c b/lib/hivex.c index 13d7556..8a774de 100644 --- a/lib/hivex.c +++ b/lib/hivex.c @@ -543,6 +543,9 @@ hivex_close (hive_h *h) free (h->filename); free (h); + if (h->msglvl >= 1) + fprintf (stderr, "hivex_close\n"); + return r; }