From 6b2af67ae1c675eda69bd0995f5e694591160ec5 Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Thu, 16 Jun 2005 06:05:09 +0000 Subject: 2005-06-16 Colin Walters * bus/bus.c (bus_context_new): Set parser to NULL after we unref it (Patch from Chris Boscolo, #2174). --- bus/bus.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'bus') diff --git a/bus/bus.c b/bus/bus.c index 6da13e48..de880cfe 100644 --- a/bus/bus.c +++ b/bus/bus.c @@ -732,7 +732,10 @@ bus_context_new (const DBusString *config_file, } if (parser != NULL) - bus_config_parser_unref (parser); + { + bus_config_parser_unref (parser); + parser = NULL; + } /* Here we change our credentials if required, * as soon as we've set up our sockets and pidfile -- cgit