You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Joe Moenich <mo...@us.ibm.com> on 1998/10/12 18:30:37 UTC

[PATCH] TPF http_log.c

TPF gets caught in a loop mallocing blocks if "error-notes" is not in the table.

Index: http_log.c
===================================================================
RCS file: /apache/apache/src/main/http_log.c,v
retrieving revision 1.1.1.1
diff -a -b -C3 -r1.1.1.1 http_log.c
*** http_log.c  1998/10/12 09:15:41     1.1.1.1
--- http_log.c  1998/10/12 09:18:10
***************
*** 443,448 ****
--- 443,449 ----

      va_start(args, fmt);
      log_error_core(file, line, level, r->server, r, fmt, args);
+ #ifndef TPF
      /*
       * IF the error level is 'warning' or more severe,
       * AND there isn't already error text associated with this request,
***************
*** 456,461 ****
--- 457,463 ----
        ap_table_setn(r->notes, "error-notes",
                      ap_pvsprintf(r->pool, fmt, args));
      }
+ #endif /* TPF */
      va_end(args);
  }

Joe Moenich
moenich@us.ibm.com
303 773-5483
tie-line 656-7487

Re: [PATCH] TPF http_log.c

Posted by Dean Gaudet <dg...@arctic.org>.

On Mon, 12 Oct 1998, Joe Moenich wrote:

> TPF gets caught in a loop mallocing blocks if "error-notes" is not in the table.

This sounds like a bug that should be tracked down...

Dean