Browse Source

MT#60258 prevent possible null dereference

Change-Id: I8e661067d83c3a292f2ec43cd7fd129d8e3f01a7
(cherry picked from commit bee6275cf9)
rfuchs/1966
Richard Fuchs 2 years ago
parent
commit
7207d9d0e5
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      recording-daemon/metafile.c

+ 2
- 0
recording-daemon/metafile.c View File

@ -52,6 +52,8 @@ static void meta_destroy(metafile_t *mf) {
// close all streams
for (int i = 0; i < mf->streams->len; i++) {
stream_t *stream = g_ptr_array_index(mf->streams, i);
if (!stream)
continue;
pthread_mutex_lock(&stream->lock);
stream_close(stream);
pthread_mutex_unlock(&stream->lock);


Loading…
Cancel
Save