Do defensive programming by using zfree() to initialize freed pointers
to NULL, so that eventual use after free result in a NULL pointer deref
instead of more subtle behaviour.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
 #include <linux/time64.h>
 #include <linux/list.h>
 #include <linux/err.h>
+#include <linux/zalloc.h>
 #include <internal/lib.h>
 #include <subcmd/parse-options.h>
 
        for (i = 0; i < nr_dsos; i++) {
                struct bench_dso *dso = &dsos[i];
 
-               free(dso->name);
+               zfree(&dso->name);
        }
        free(dsos);
 }