Module Name: src Committed By: christos Date: Fri Oct 30 23:21:05 UTC 2015
Modified Files: src/libexec/httpd: Makefile bozohttpd.c Log Message: - don't use alloca and then check if alloca returns null and then try to free it. Allocating from the stack does not return null, and freeing it will have unpredictable results. use malloc instead. - now we are using malloc remove -Wno-stack-protector kludge To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 src/libexec/httpd/Makefile cvs rdiff -u -r1.67 -r1.68 src/libexec/httpd/bozohttpd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.