]> granicus.if.org Git - apache/commitdiff
document some nonsense it may be sizeof off_t > sizeof size_t.
authorWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 2 Jan 2009 19:01:01 +0000 (19:01 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Fri, 2 Jan 2009 19:01:01 +0000 (19:01 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@730815 13f79535-47bb-0310-9956-ffa450edef68

server/util_script.c

index 11c10fd87c848e4512c2fcf430ba4b0f0d177592..fe14d0d952c566e3f76e6679ca5f93d8f0dd8015 100644 (file)
@@ -816,6 +816,9 @@ AP_DECLARE(apr_status_t) ap_body_to_table(request_rec *r, apr_table_t **table)
 
             if (!rv) {
                 apr_size_t total;
+                /* XXX where's our test that len fits in memory??? 
+                 * theoretically can be a large file > ram space
+                 */
                 buffer = apr_palloc(tpool, len+1);
                 
                 total = len+1;