URL:
  <http://savannah.gnu.org/bugs/?31168>

                 Summary: NSURLProtocol.m: [_NSHTTPURLProtocol dealloc] makes
one extra release
                 Project: GNUstep
            Submitted by: svg
            Submitted on: Чтв 30 Сен 2010 12:11:11
                Category: Base/Foundation
                Severity: 3 - Normal
              Item Group: Bug
                  Status: None
                 Privacy: Public
             Assigned to: None
             Open/Closed: Open
         Discussion Lock: Any

    _______________________________________________________

Details:

I believe there is an extra release in [_NSHTTPURLProtocol dealloc].
============================================================
- (void) dealloc
{ 
  [_parser release];                    // received headers
  [_body release];                      // for sending the body
  [_response release];
  [_credential release];
  [_credential release];   // <= the extra release
  [super dealloc];
}
============================================================





    _______________________________________________________

Reply to this item at:

  <http://savannah.gnu.org/bugs/?31168>

_______________________________________________
  Message sent via/by Savannah
  http://savannah.gnu.org/


_______________________________________________
Bug-gnustep mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-gnustep

Reply via email to