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 @@
 	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);
 	}