GNOME Bugzilla – Bug 754899
dashdemux: add checks for memory allocation failure
Last modified: 2015-09-11 16:55:08 UTC
The gstmpdparser.c file contains a lot of g_slice_new0 calls without checking the return code. There's one also in gstdashdemux.c file.
I don't think g_slice_new0() can fail, same as g_malloc() ?
Yes, they will all abort() if allocation fails. There's not much point in checking for allocation failures anyway.
ah, ok, I didn't knew that.