From 152699da36021462dd4702e996e40e693236b29f Mon Sep 17 00:00:00 2001 From: Bruce Allen Date: Sun, 12 Dec 2004 15:21:20 +0000 Subject: [PATCH] Initialized NULL (in static initialized data segment anyway, but be explicit). svn path=/trunk/boinc/; revision=4831 --- api/graphics_lib.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/graphics_lib.C b/api/graphics_lib.C index bae954c94d..e080b814c3 100644 --- a/api/graphics_lib.C +++ b/api/graphics_lib.C @@ -29,7 +29,7 @@ #define BOINC_STRLEN 512 -void* graphics_lib_handle; +void* graphics_lib_handle=NULL; typedef int (*BIOGI_FUNC)(BOINC_OPTIONS&, void(*worker)(), int (*)(BOINC_OPTIONS&));