diff --git a/src/validators/schema/SchemaInfo.cpp b/src/validators/schema/SchemaInfo.cpp
index 462eeb81dba9dbc76b00cb883a1f2152ce2a75d8..f575d9110c08609f71acba4dd2263e9a649789cf 100644
--- a/src/validators/schema/SchemaInfo.cpp
+++ b/src/validators/schema/SchemaInfo.cpp
@@ -56,6 +56,9 @@
 
 /*
  * $Log$
+ * Revision 1.6  2001/12/12 20:52:19  peiyongz
+ * memory leak: fRedefineList
+ *
  * Revision 1.5  2001/10/04 15:08:56  knoaman
  * Add support for circular import.
  *
@@ -123,6 +126,9 @@ SchemaInfo::~SchemaInfo()
     delete fImportingList;
 
     fImportList = fIncludeList = fImportingList = 0;
+
+    delete fRedefineList;
+    fRedefineList = 0;
 }
 
 // ---------------------------------------------------------------------------