Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/libexec/httpd belated call version 20210211 after previous m...



details:   https://anonhg.NetBSD.org/src/rev/72fad9247028
branches:  trunk
changeset: 959854:72fad9247028
user:      mrg <mrg%NetBSD.org@localhost>
date:      Sat Feb 27 12:36:46 2021 +0000

description:
belated call version 20210211 after previous memory leak fix.

diffstat:

 libexec/httpd/CHANGES                     |  5 +++--
 libexec/httpd/bozohttpd.c                 |  6 +++---
 libexec/httpd/bozohttpd.h                 |  4 ++--
 libexec/httpd/cgi-bozo.c                  |  4 ++--
 libexec/httpd/libbozohttpd/libbozohttpd.3 |  4 ++--
 libexec/httpd/main.c                      |  4 ++--
 6 files changed, 14 insertions(+), 13 deletions(-)

diffs (99 lines):

diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/CHANGES
--- a/libexec/httpd/CHANGES     Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/CHANGES     Sat Feb 27 12:36:46 2021 +0000
@@ -1,8 +1,9 @@
-$NetBSD: CHANGES,v 1.45 2021/02/11 09:23:55 mrg Exp $
+$NetBSD: CHANGES,v 1.46 2021/02/27 12:36:46 mrg Exp $
 
-changes in bozohttpd 20210210:
+changes in bozohttpd 20210211:
        o  fix various NULL derefs from malformed headers.  mostly from
           <emily@ingalls.rocks>.
+       o  fix memory leaks in library interface: add bozo_cleanup().
 
 changes in bozohttpd 20201014:
        o  also set -D_GNU_SOURCE in Makefile.boot.  from
diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/bozohttpd.c
--- a/libexec/httpd/bozohttpd.c Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/bozohttpd.c Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: bozohttpd.c,v 1.126 2021/02/11 09:57:52 mrg Exp $      */
+/*     $NetBSD: bozohttpd.c,v 1.127 2021/02/27 12:36:46 mrg Exp $      */
 
 /*     $eterna: bozohttpd.c,v 1.178 2011/11/18 09:21:15 mrg Exp $      */
 
 /*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -108,7 +108,7 @@
 #define INDEX_HTML             "index.html"
 #endif
 #ifndef SERVER_SOFTWARE
-#define SERVER_SOFTWARE                "bozohttpd/20210210"
+#define SERVER_SOFTWARE                "bozohttpd/20210211"
 #endif
 #ifndef PUBLIC_HTML
 #define PUBLIC_HTML            "public_html"
diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/bozohttpd.h
--- a/libexec/httpd/bozohttpd.h Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/bozohttpd.h Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: bozohttpd.h,v 1.67 2021/02/11 09:57:52 mrg Exp $       */
+/*     $NetBSD: bozohttpd.h,v 1.68 2021/02/27 12:36:46 mrg Exp $       */
 
 /*     $eterna: bozohttpd.h,v 1.39 2011/11/18 09:21:15 mrg Exp $       */
 
 /*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/cgi-bozo.c
--- a/libexec/httpd/cgi-bozo.c  Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/cgi-bozo.c  Sat Feb 27 12:36:46 2021 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: cgi-bozo.c,v 1.52 2021/02/11 09:23:55 mrg Exp $        */
+/*     $NetBSD: cgi-bozo.c,v 1.53 2021/02/27 12:36:46 mrg Exp $        */
 
 /*     $eterna: cgi-bozo.c,v 1.40 2011/11/18 09:21:15 mrg Exp $        */
 
 /*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/libbozohttpd/libbozohttpd.3
--- a/libexec/httpd/libbozohttpd/libbozohttpd.3 Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/libbozohttpd/libbozohttpd.3 Sat Feb 27 12:36:46 2021 +0000
@@ -1,8 +1,8 @@
-.\" $NetBSD: libbozohttpd.3,v 1.5 2021/02/11 09:57:53 mrg Exp $
+.\" $NetBSD: libbozohttpd.3,v 1.6 2021/02/27 12:36:46 mrg Exp $
 .\"
 .\" $eterna: libbozohttpd.3,v 1.2 2010/05/10 02:48:23 mrg Exp $
 .\"
-.\" Copyright (c) 2009 The NetBSD Foundation, Inc.
+.\" Copyright (c) 2009, 2021 The NetBSD Foundation, Inc.
 .\" All rights reserved.
 .\"
 .\" This manual page is derived from software contributed to The
diff -r 18feaedb3a18 -r 72fad9247028 libexec/httpd/main.c
--- a/libexec/httpd/main.c      Sat Feb 27 12:28:17 2021 +0000
+++ b/libexec/httpd/main.c      Sat Feb 27 12:36:46 2021 +0000
@@ -1,10 +1,10 @@
-/*     $NetBSD: main.c,v 1.26 2021/02/11 09:57:52 mrg Exp $    */
+/*     $NetBSD: main.c,v 1.27 2021/02/27 12:36:46 mrg Exp $    */
 
 /*     $eterna: main.c,v 1.6 2011/11/18 09:21:15 mrg Exp $     */
 /* from: eterna: bozohttpd.c,v 1.159 2009/05/23 02:14:30 mrg Exp       */
 
 /*
- * Copyright (c) 1997-2020 Matthew R. Green
+ * Copyright (c) 1997-2021 Matthew R. Green
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without



Home | Main Index | Thread Index | Old Index