author | zautrix <zautrix> | 2004-07-03 21:47:33 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-07-03 21:47:33 (UTC) |
commit | 5e59162e6eb6603610d1ca4c96d5d97acae0f60b (patch) (side-by-side diff) | |
tree | c891d1e2125cf6f68509332fe06c878709525480 | |
parent | 54e76d203297aa5da51342492d482187f4d6cd20 (diff) | |
download | kdepimpi-5e59162e6eb6603610d1ca4c96d5d97acae0f60b.zip kdepimpi-5e59162e6eb6603610d1ca4c96d5d97acae0f60b.tar.gz kdepimpi-5e59162e6eb6603610d1ca4c96d5d97acae0f60b.tar.bz2 |
Fixed crash when accessing opie resource
-rw-r--r-- | kabc/plugins/opie/resourceopie.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kabc/plugins/opie/resourceopie.cpp b/kabc/plugins/opie/resourceopie.cpp index a4f8d8a..3b2a6b7 100644 --- a/kabc/plugins/opie/resourceopie.cpp +++ b/kabc/plugins/opie/resourceopie.cpp @@ -219,7 +219,8 @@ bool ResourceOpie::load() } delete access; - delete backend; + // it seems so, that deletion of access deletes backend as well + //delete backend; return true; } |