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
A (half-broken?) EMF file I fed into the lib caused a segfault in function reverse_utf8() due to the argument value of char *in being NULL, which in turn has been caused by calling
A (half-broken?) EMF file I fed into the lib caused a segfault in function
reverse_utf8()
due to the argument value ofchar *in
beingNULL
, which in turn has been caused by callinglibemf2svg/src/lib/emf2svg_utils.c
Line 1399 in 821a40f
which fills the local
string
withNULL
.Trivial fix: perform the call
libemf2svg/src/lib/emf2svg_utils.c
Line 1418 in 821a40f
iff
((string != NULL) && (*size_out > 0U))
.The text was updated successfully, but these errors were encountered: