CVSROOT: /cvs Module name: src Changes by: [email protected] 2016/10/07 01:33:54
Modified files:
usr.sbin/httpd : server_fcgi.c
Log message:
Empty lines cause server_fcgi_getheaders() to immediately return.
Unfortunately in that case the line was not freed. This lead to a
memleak on each request. Thus, save the return value prior to
returning, free the line and return the saved value.
ok jung@
