"Curt Powell" <[EMAIL PROTECTED]> writes:

> Yes, I am using 3.20.  I will attempt to revert to 3.19 and rerun my test.

This patch fixes the leak in 3.20.  Expect to see HTML-Parser-3.21
pretty soon :-(

Regards,
Gisle


Index: hparser.c
===================================================================
RCS file: /cvsroot/libwww-perl/html-parser/hparser.c,v
retrieving revision 2.67
retrieving revision 2.68
diff -u -p -u -r2.67 -r2.68
--- hparser.c   2001/04/06 20:03:24     2.67
+++ hparser.c   2001/04/10 18:33:27     2.68
@@ -1,4 +1,4 @@
-/* $Id: hparser.c,v 2.67 2001/04/06 20:03:24 gisle Exp $
+/* $Id: hparser.c,v 2.68 2001/04/10 18:33:27 gisle Exp $
  *
  * Copyright 1999-2001, Gisle Aas
  * Copyright 1999-2000, Michael A. Chase
@@ -243,6 +243,7 @@ report_event(PSTATE* p_state,
                SvREFCNT_dec(tagname);
                return;
            }
+           SvREFCNT_dec(tagname);
        }
        else if (p_state->ignoring_element) {
            return;

Reply via email to