Diff for /libwww/Library/src/HTReqMan.c between versions 2.80 and 2.81

version 2.80, 2000/07/04 15:23:57 version 2.81, 2000/08/02 10:38:07
Line 162  PUBLIC void HTRequest_delete (HTRequest Line 162  PUBLIC void HTRequest_delete (HTRequest
         HTTRACE(CORE_TRACE, "Request..... Delete %p\n" _ me);          HTTRACE(CORE_TRACE, "Request..... Delete %p\n" _ me);
         if (me->net) HTNet_setRequest(me->net, NULL);          if (me->net) HTNet_setRequest(me->net, NULL);
   
           /*
           ** Make sure we don't delete the same stream twice, when the output
           ** stream and the debug stream are the same.
           */
           if (me->orig_output_stream == me->orig_debug_stream)
           {
               me->orig_debug_stream = NULL;
           }
   
         /* Should we delete the output stream? */          /* Should we delete the output stream? */
         if (me->orig_output_stream) {          if (me->orig_output_stream) {
             HTTRACE(CORE_TRACE, "Request..... Deleting dangling output stream\n");              HTTRACE(CORE_TRACE, "Request..... Deleting dangling output stream\n");

Removed from v.2.80  
changed lines
  Added in v.2.81


Webmaster