Initialize some uninitialized pointers

The compiler was complaining that some of these pointers could be
uninitialized under some optimization levels (especially when no-opping
logging for fuzzing). This change addresses that.

Bug: None
Test: make tests
Change-Id: I7ead341ad7c1ef2770ba131a83ba20710ee3302d
diff --git a/minijail0.c b/minijail0.c
index 42f6149..db9fc40 100644
--- a/minijail0.c
+++ b/minijail0.c
@@ -242,7 +242,7 @@
 	const size_t path_max = 4096;
 	char *map;
 	size_t size;
-	const char *filter_path;
+	const char *filter_path = NULL;
 
 	const char *optstring =
 	    "+u:g:sS:c:C:P:b:B:V:f:m::M::k:a:e::R:T:vrGhHinNplLt::IUKwyYz";
diff --git a/syscall_filter.c b/syscall_filter.c
index adc4b3c..c338e90 100644
--- a/syscall_filter.c
+++ b/syscall_filter.c
@@ -173,7 +173,7 @@
 		 struct bpf_labels *labels, int nr, int grp_idx)
 {
 	/* Splits the atom. */
-	char *atom_ptr;
+	char *atom_ptr = NULL;
 	char *argidx_str = strtok_r(atom, " ", &atom_ptr);
 	if (argidx_str == NULL) {
 		warn("empty atom");