From: Andreas Henriksson Date: Tue, 16 Sep 2014 17:40:25 +0000 (+0200) Subject: bootchart: oom-check correct variable X-Git-Tag: v217~556 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d498a616075ebfd8025d66c4c4f725d24eb3aca3;p=thirdparty%2Fsystemd.git bootchart: oom-check correct variable Coverity warned that we have already dereferenced ps->sample before null-checking it. I suspect that's not really the issue and that the check is checking the wrong variable. Likely the oom-check should be on the just allocated ps->sample->next. Found by coverity. Fixes: CID#1237765 --- diff --git a/src/bootchart/store.c b/src/bootchart/store.c index ed46a503c67..ed683e88d97 100644 --- a/src/bootchart/store.c +++ b/src/bootchart/store.c @@ -399,7 +399,7 @@ schedstat_next: continue; ps->sample->next = new0(struct ps_sched_struct, 1); - if (!ps->sample) { + if (!ps->sample->next) { log_oom(); exit(EXIT_FAILURE); }