[vlc-commits] [Git][videolan/vlc][master] test: opengl/filters: release leaking picture
Jean-Baptiste Kempf (@jbk)
gitlab at videolan.org
Wed Jul 12 08:03:14 UTC 2023
Jean-Baptiste Kempf pushed to branch master at VideoLAN / VLC
Commits:
a0f1dc38 by Alexandre Janniaux at 2023-07-12T07:40:10+00:00
test: opengl/filters: release leaking picture
Fix the following leak:
Direct leak of 440 byte(s) in 1 object(s) allocated from:
#0 0x7f16238e1369 in __interceptor_malloc /usr/src/debug/gcc/gcc/libsanitizer/asan/asan_malloc_linux.cpp:69
#1 0x7f162362bb1b in picture_NewFromFormat ../../src/misc/picture.c:271
#2 0x55a72c5485c7 in test_opengl_offscreen ../../test/modules/video_output/opengl/filters.c:158
#3 0x55a72c547005 in main ../../test/modules/video_output/opengl/filters.c:294
#4 0x7f162314c84f (/usr/lib/libc.so.6+0x2384f) (BuildId: 2f005a79cd1a8e385972f5a102f16adba414d75e)
- - - - -
1 changed file:
- test/modules/video_output/opengl/filters.c
Changes:
=====================================
test/modules/video_output/opengl/filters.c
=====================================
@@ -213,6 +213,8 @@ static void test_opengl_offscreen(
vlc_gl_ReleaseCurrent(gl);
vlc_gl_Delete(gl);
+
+ picture_Release(picture);
}
int main( int argc, char **argv )
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a0f1dc38fa722e210b7b0eb85124550f051c373a
--
View it on GitLab: https://code.videolan.org/videolan/vlc/-/commit/a0f1dc38fa722e210b7b0eb85124550f051c373a
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