Update of /cvsroot/mahogany/M/src/classes
In directory sc8-pr-cvs1:/tmp/cvs-serv6206/src/classes

Modified Files:
        ConfigSource.cpp 
Log Message:
Fixed infinite recursion crash

Index: ConfigSource.cpp
===================================================================
RCS file: /cvsroot/mahogany/M/src/classes/ConfigSource.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -b -u -2 -r1.4 -r1.5
--- ConfigSource.cpp    30 Aug 2003 23:47:47 -0000      1.4
+++ ConfigSource.cpp    31 Aug 2003 16:34:16 -0000      1.5
@@ -549,10 +549,10 @@
 bool ConfigSourceLocal::DeleteEntry(const String& name)
 {
-   return DeleteEntry(name);
+   return m_config->DeleteEntry(name);
 }
 
 bool ConfigSourceLocal::DeleteGroup(const String& name)
 {
-   return DeleteGroup(name);
+   return m_config->DeleteGroup(name);
 }
 



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mahogany-cvsupdates mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mahogany-cvsupdates

Reply via email to