]> git.ipfire.org Git - thirdparty/kmod.git/commit
Fix uninitialized warning
authorLucas De Marchi <lucas.demarchi@intel.com>
Mon, 26 Jan 2015 01:54:05 +0000 (23:54 -0200)
committerLucas De Marchi <lucas.demarchi@intel.com>
Mon, 26 Jan 2015 01:54:05 +0000 (23:54 -0200)
commit01f9bc6deed3f9f14c8129efd0ffc100e7a0e6d0
treee76bf1e65eca2c47a050c959615140a1e3248b41
parenta5f799af9819876c5d1dc9d77dc3ee9f12171b65
Fix uninitialized warning

Initialize variable to NULL before calling kmod_module_new_from_lookup().

libkmod/libkmod-module.c: In function 'kmod_module_new_from_lookup.part.4.constprop':
libkmod/libkmod-module.c:192:8: warning: 'depmod' may be used uninitialized in this function [-Wmaybe-uninitialized]
   list = kmod_list_prepend(list, depmod);
        ^
libkmod/libkmod-module.c:173:23: note: 'depmod' was declared here
   struct kmod_module *depmod;
libkmod/libkmod-module.c