From: Denis Vlasenko Date: Sun, 29 Mar 2009 17:25:14 +0000 (-0000) Subject: modutils: dont pass NULL options to init_module() X-Git-Tag: 1_14_0~156 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0d907eab6cd424963bf8b788710e7a68d50d0511;p=platform%2Fupstream%2Fbusybox.git modutils: dont pass NULL options to init_module() --- diff --git a/modutils/modutils.c b/modutils/modutils.c index 405785f..ef4f619 100644 --- a/modutils/modutils.c +++ b/modutils/modutils.c @@ -127,7 +127,7 @@ int FAST_FUNC bb_init_module(const char *filename, const char *options) image = xmalloc_open_zipped_read_close(filename, &len); if (image) { rc = 0; - if (init_module(image, len, options) != 0) + if (init_module(image, len, options ? options : "") != 0) rc = errno; free(image); }