CID 1268629: Don't deref NULL (can't happen unless count is incorrect;

code safety).
This commit is contained in:
christos 2015-05-09 15:28:25 +00:00
parent e8c33bf290
commit f29f1289ff

View File

@ -107,6 +107,8 @@ parse_block_list(char *str)
} }
} }
if (p == NULL)
break;
str = p + 1; str = p + 1;
} }