dgaudet 98/01/19 16:52:17
Modified: . Tag: APACHE_1_2_X STATUS
src Tag: APACHE_1_2_X CHANGES http_protocol.c
Log:
r->connect->user allocated in wrong pool
PR: 1500
Revision Changes Path
No revision
No revision
1.1.2.18 +1 -0 apache/Attic/STATUS
Index: STATUS
===================================================================
RCS file: /export/home/cvs/apache/Attic/STATUS,v
retrieving revision 1.1.2.17
retrieving revision 1.1.2.18
diff -u -r1.1.2.17 -r1.1.2.18
--- STATUS 1998/01/20 00:49:34 1.1.2.17
+++ STATUS 1998/01/20 00:52:12 1.1.2.18
@@ -15,6 +15,7 @@
* general/1666: basic auth token should be tested case-insensitive
* protocol/1683: The Connection header may contain multiple close tokens
* proxy was sending HTTP/1.1 responses in error
+ * PR#1500: allocate r->connection->user in correct pool
Available:
No revision
No revision
1.286.2.70 +3 -0 apache/src/CHANGES
Index: CHANGES
===================================================================
RCS file: /export/home/cvs/apache/src/CHANGES,v
retrieving revision 1.286.2.69
retrieving revision 1.286.2.70
diff -u -r1.286.2.69 -r1.286.2.70
--- CHANGES 1998/01/20 00:49:36 1.286.2.69
+++ CHANGES 1998/01/20 00:52:14 1.286.2.70
@@ -1,5 +1,8 @@
Changes with Apache 1.2.6
+ *) r->connection->user was allocated in the wrong pool causing corruption
+ in some cases when used with mod_cern_meta. [Dean Gaudet] PR#1500
+
*) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
Also removed the auto-generated link to www.apache.org that was the
source of so many misdirected bug reports. [Roy Fielding, Marc Slemko]
1.126.2.10 +1 -1 apache/src/http_protocol.c
Index: http_protocol.c
===================================================================
RCS file: /export/home/cvs/apache/src/http_protocol.c,v
retrieving revision 1.126.2.9
retrieving revision 1.126.2.10
diff -u -r1.126.2.9 -r1.126.2.10
--- http_protocol.c 1998/01/20 00:35:18 1.126.2.9
+++ http_protocol.c 1998/01/20 00:52:15 1.126.2.10
@@ -936,7 +936,7 @@
}
t = uudecode (r->pool, auth_line);
- r->connection->user = getword_nulls_nc (r->pool, &t, ':');
+ r->connection->user = getword_nulls_nc (r->connection->pool, &t, ':');
r->connection->auth_type = "Basic";
*pw = t;