]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Make the loader less noisy under valgrind.
authorJoshua Colp <jcolp@digium.com>
Wed, 7 Mar 2007 20:05:05 +0000 (20:05 +0000)
committerJoshua Colp <jcolp@digium.com>
Wed, 7 Mar 2007 20:05:05 +0000 (20:05 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@58286 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/loader.c

index 4516b377902186d6d658b1c6cdd4f0022810996b..838bcd27b50399077777b8346ef38f125c79ef99 100644 (file)
@@ -336,8 +336,8 @@ static void unload_dynamic_module(struct ast_module *mod)
 
 static struct ast_module *load_dynamic_module(const char *resource_in, unsigned int global_symbols_only)
 {
-       char fn[256];
-       void *lib;
+       char fn[256] = "";
+       void *lib = NULL;
        struct ast_module *mod;
        char *resource = (char *) resource_in;
        unsigned int wants_global;