From: Tycho Andersen Date: Wed, 8 Oct 2014 17:12:04 +0000 (+0000) Subject: criu: DECLARE_ARG should check for null arguments X-Git-Tag: lxc-1.1.0.alpha3~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2566a145174d0e5e0cd5f0488e559945e791ed7d;p=thirdparty%2Flxc.git criu: DECLARE_ARG should check for null arguments This is in preparation for the cgroups creation work, but also probably just a good idea in general. The ERROR message is handy since we print line nos. it will to give people an indication of what arg was null. Signed-off-by: Tycho Andersen Acked-by: Serge E. Hallyn --- diff --git a/src/lxc/lxccontainer.c b/src/lxc/lxccontainer.c index 4f90f356e..fee758d2d 100644 --- a/src/lxc/lxccontainer.c +++ b/src/lxc/lxccontainer.c @@ -3554,11 +3554,15 @@ static void exec_criu(struct criu_opts *opts) memset(argv, 0, static_args * sizeof(*argv)); -#define DECLARE_ARG(arg) \ - do { \ - argv[argc++] = strdup(arg); \ - if (!argv[argc-1]) \ - goto err; \ +#define DECLARE_ARG(arg) \ + do { \ + if (arg == NULL) { \ + ERROR("Got NULL argument for criu"); \ + goto err; \ + } \ + argv[argc++] = strdup(arg); \ + if (!argv[argc-1]) \ + goto err; \ } while (0) argv[argc++] = on_path("criu", NULL);