Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2006-04-26 04:51:58 +0400
committerDaniel Dunbar <daniel@zuster.org>2006-04-26 04:51:58 +0400
commit16a816c38d43190f062d754ab03bcee0078b2972 (patch)
treec8223fa6789e89fbde03088b4c79a4b37d721e5c /source/blender/python/api2_2x/Library.c
parent512cb9799d3209e4ff09abe97c8ab97f8986d934 (diff)
- initialize some globals to 0 explicitly
Diffstat (limited to 'source/blender/python/api2_2x/Library.c')
-rw-r--r--source/blender/python/api2_2x/Library.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/api2_2x/Library.c b/source/blender/python/api2_2x/Library.c
index 32c2c9792d4..8e25820a4b6 100644
--- a/source/blender/python/api2_2x/Library.c
+++ b/source/blender/python/api2_2x/Library.c
@@ -51,8 +51,8 @@
/**
* Global variables.
*/
-static BlendHandle *bpy_openlib; /* ptr to the open .blend file */
-static char *bpy_openlibname; /* its pathname */
+static BlendHandle *bpy_openlib = NULL; /* ptr to the open .blend file */
+static char *bpy_openlibname = NULL; /* its pathname */
/**
* Function prototypes for the Library submodule.