Fix CVE-2017-16844: https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-16844 https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=876511 Patch copied from Debian procmail package 3.22-26: http://http.debian.net/debian/pool/main/p/procmail/procmail_3.22-26.debian.tar.xz From: Santiago Vila Subject: Fix heap-based buffer overflow in loadbuf() Bug-Debian: http://bugs.debian.org/876511 X-Debian-version: 3.22-26 --- a/src/formisc.c +++ b/src/formisc.c @@ -103,7 +103,7 @@ } /* append to buf */ void loadbuf(text,len)const char*const text;const size_t len; -{ if(buffilled+len>buflen) /* buf can't hold the text */ +{ while(buffilled+len>buflen) /* buf can't hold the text */ buf=realloc(buf,buflen+=Bsize); tmemmove(buf+buffilled,text,len);buffilled+=len; } s'>koszko-scripts Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/axoloti.scm
AgeCommit message (Expand)Author
2019-01-24gnu: axoloti-patcher: Use INVOKE....* gnu/packages/axoloti.scm (axoloti-patcher)[arguments]: Use INVOKE and unconditionally return #T from build phase. Ricardo Wurmus
2019-01-24gnu: axoloti-runtime: Use INVOKE....* gnu/packages/axoloti.scm (axoloti-runtime)[arguments]: Use INVOKE and return #T from build phases unconditionally. Ricardo Wurmus
2017-12-16gnu: axoloti-runtime: Update ChibiOS URL....* gnu/packages/axoloti.scm (axoloti-runtime)[inputs]: Update URL for ChibiOS sources. Ricardo Wurmus
2017-10-17gnu: axoloti-runtime: Update home page....* gnu/packages/axoloti.scm (axoloti-runtime)[home-page]: Use redirection target URL. Ricardo Wurmus
2017-10-17gnu: Add Axoloti....* gnu/packages/axoloti.scm: New file. * gnu/packages/patches/libusb-for-axoloti.patch: New file. * gnu/local.mk (dist_patch_DATA): Add patch. (GNU_SYSTEM_MODULES): Add module. Ricardo Wurmus