Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
timeshift: reader - coverity - access to variable after free()
  • Loading branch information
perexg committed Oct 3, 2014
1 parent a97c73d commit a03b8b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/timeshift/timeshift_reader.c
Expand Up @@ -749,8 +749,8 @@ void *timeshift_reader ( void *p )
pktbuf_len(pkt->pkt_payload), sm->sm_time);
#endif
}
streaming_target_deliver2(ts->output, sm);
last_time = sm->sm_time;
streaming_target_deliver2(ts->output, sm);
sm = NULL;
wait = 0;
} else if (sm) {
Expand Down

0 comments on commit a03b8b0

Please sign in to comment.