Wasn't initializing wildcard pointer.
authorcantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Wed, 7 Apr 2004 20:19:57 +0000 (20:19 +0000)
committercantor <cantor@cb58f699-b61c-0410-a6fe-9272a202ed29>
Wed, 7 Apr 2004 20:19:57 +0000 (20:19 +0000)
git-svn-id: https://svn.middleware.georgetown.edu/cpp-sp/trunk@950 cb58f699-b61c-0410-a6fe-9272a202ed29

xmlproviders/XMLTrust.cpp

index 760f01e..e2da71f 100644 (file)
@@ -92,8 +92,8 @@ namespace {
     class XMLTrustImpl : public ReloadableXMLFileImpl
     {
     public:
-        XMLTrustImpl(const char* pathname) : ReloadableXMLFileImpl(pathname) { init(); }
-        XMLTrustImpl(const DOMElement* e) : ReloadableXMLFileImpl(e) { init(); }
+        XMLTrustImpl(const char* pathname) : ReloadableXMLFileImpl(pathname), m_wildcard(NULL) { init(); }
+        XMLTrustImpl(const DOMElement* e) : ReloadableXMLFileImpl(e), m_wildcard(NULL) { init(); }
         void init();
         ~XMLTrustImpl();