git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@6492
91ce42f0-d328-0410-95d8-
f526ca767f89
#include "plugins.h"
/* All loaded plugins */
-alist *plugin_list;
+alist *plugin_list = NULL;
/*
* Create a new plugin "class" entry and enter it in the
#ifndef HAVE_WIN32
Plugin *plugin;
+ if (!plugin_list) {
+ return;
+ }
foreach_alist(plugin, plugin_list) {
/* Shut it down and unload it */
plugin->unloadPlugin();
#undef VERSION
#define VERSION "2.3.10"
-#define BDATE "24 February 2008"
-#define LSMDATE "24Feb08"
+#define BDATE "26 February 2008"
+#define LSMDATE "26Feb08"
#define PROG_COPYRIGHT "Copyright (C) %d-2008 Free Software Foundation Europe e.V.\n"
#define BYEAR "2008" /* year for copyright messages in progs */
Technical notes on version 2.3
General:
+26Feb08
+kes Fix free of plugin_list when none exists.
25Feb08
ebl Apply accurate project patch.
24Feb08