insmod: fix detection of open failure
authorDenis Vlasenko <vda.linux@googlemail.com>
Sun, 31 Aug 2008 21:56:48 +0000 (21:56 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Sun, 31 Aug 2008 21:56:48 +0000 (21:56 -0000)
modutils/insmod.c

index 09e7d68..80dbfd7 100644 (file)
@@ -4275,7 +4275,7 @@ static int insmod_ng_main(int argc UNUSED_PARAM, char **argv)
        }
 #else
        len = MAXINT(ssize_t);
-       map = xmalloc_open_read_close(filename, &len);
+       map = xmalloc_xopen_read_close(filename, &len);
 #endif
 
        if (init_module(map, len, options) != 0)