[vlc-commits] [Git][videolan/vlc][master] caca: fix invalid deference
    Rémi Denis-Courmont (@Courmisch) 
    gitlab at videolan.org
       
    Sun May 29 09:48:48 UTC 2022
    
    
  
Rémi Denis-Courmont pushed to branch master at VideoLAN / VLC
Commits:
aaed19ff by Rémi Denis-Courmont at 2022-05-29T09:33:22+00:00
caca: fix invalid deference
Fixes #26284.
- - - - -
1 changed file:
- modules/video_output/caca.c
Changes:
=====================================
modules/video_output/caca.c
=====================================
@@ -87,6 +87,7 @@ static void VoutDisplayEventKey(vout_display_sys_t *sys, int key)
     vlc_caca_event_t *event = malloc(sizeof (*event));
 
     if (likely(event != NULL)) {
+        event->next = NULL;
         event->key = key;
         vlc_queue_Enqueue(&sys->q, event);
     }
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/aaed19ff50e2afc407abd5875d4b995022f9ad3c
-- 
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/aaed19ff50e2afc407abd5875d4b995022f9ad3c
You're receiving this email because of your account on code.videolan.org.
VideoLAN code repository instance
    
    
More information about the vlc-commits
mailing list