Bug#960736: fig2dev crash in compute_closed_spline

2020-05-15 Thread David Petek
essSanitizer can not provide additional info. SUMMARY: AddressSanitizer: SEGV (/tmp/fig2dev+0x4fd10e) in compute_closed_spline ==7007==ABORTING I am sending "compute_closed_spline.fig" in attachment. Kind regards, -- David Petek

Bug#959141: apngopt 1.2-2 stack buffer overflow

2020-04-29 Thread David Petek
; 2374strcat(szOut, ".opt.png"); 2375 } ``` Suggested fix: use strncpy or verify szIn length before copying. Proposed patch: ``` 2372c2372 < strcpy(szOut, szIn); --- > strncpy(szOut, szIn, 247); ``` Best regards, -- David Petek