You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the src_v4l_set_read, if in line 667 s->buffer = malloc(s->buffer_length); failed, it will release src in line 671 and return -1. So in line 788, if src->use_read != NULL, line 790 will be executed, which will lead to UAF
The text was updated successfully, but these errors were encountered:
File: src_v41_set_read.c
Bug Function: src_v4l_open
Version: Git-master
In line 788-792
In the
src_v4l_set_read
, if in line 667s->buffer = malloc(s->buffer_length);
failed, it will release src in line 671 and return -1. So in line 788, if src->use_read != NULL, line 790 will be executed, which will lead to UAFThe text was updated successfully, but these errors were encountered: