From efee2b08f575e2c216cffa6f08a928223ab2cedb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 12 Jun 2006 04:48:20 +0000 Subject: Store memory bug fixes (multiple ref ptr's to the same object, bad), control panel fixes git-svn-id: http://svn.drobilla.net/lad/grauph@32 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/PatchLibrarian.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libs/client/PatchLibrarian.cpp') diff --git a/src/libs/client/PatchLibrarian.cpp b/src/libs/client/PatchLibrarian.cpp index 532f512b..930cdccf 100644 --- a/src/libs/client/PatchLibrarian.cpp +++ b/src/libs/client/PatchLibrarian.cpp @@ -359,8 +359,8 @@ PatchLibrarian::load_patch(PatchModel* pm, bool wait, bool existing) { string filename = pm->filename(); - string additional_path = (pm->parent() == NULL) - ? "" : ((PatchModel*)pm->parent())->filename(); + string additional_path = (!pm->parent()) + ? "" : ((PatchModel*)pm->parent().get())->filename(); additional_path = additional_path.substr(0, additional_path.find_last_of("/")); filename = find_file(pm->filename(), additional_path); @@ -409,7 +409,7 @@ PatchLibrarian::load_patch(PatchModel* pm, bool wait, bool existing) if ((!xmlStrcmp(cur->name, (const xmlChar*)"name"))) { if (load_name) { assert(key != NULL); - if (pm->parent() != NULL) { + if (pm->parent()) { path = pm->parent()->base_path() + string((char*)key); } else { path = string("/") + string((char*)key); -- cgit v1.2.1