diff options
author | Max Kellermann <max@duempel.org> | 2014-01-09 13:21:56 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-09 13:21:56 +0100 |
commit | 0c34555b02f5d24f8c836534dcc30005a42f2c95 (patch) | |
tree | e07b85d3e6b5b165002a0ff9822a7f6c07eb10b2 /src/db/SimpleDatabasePlugin.cxx | |
parent | 83a988e2e48b85afe87c48f6a25d596b0c56054c (diff) | |
download | mpd-0c34555b02f5d24f8c836534dcc30005a42f2c95.tar.gz mpd-0c34555b02f5d24f8c836534dcc30005a42f2c95.tar.xz mpd-0c34555b02f5d24f8c836534dcc30005a42f2c95.zip |
Directory: remove method Free()
Diffstat (limited to 'src/db/SimpleDatabasePlugin.cxx')
-rw-r--r-- | src/db/SimpleDatabasePlugin.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db/SimpleDatabasePlugin.cxx b/src/db/SimpleDatabasePlugin.cxx index 7fc66ed67..a46aa60b2 100644 --- a/src/db/SimpleDatabasePlugin.cxx +++ b/src/db/SimpleDatabasePlugin.cxx @@ -168,7 +168,7 @@ SimpleDatabase::Open(Error &error) #endif if (!Load(error)) { - root->Free(); + delete root; LogError(error); error.Clear(); @@ -188,7 +188,7 @@ SimpleDatabase::Close() assert(root != nullptr); assert(borrowed_song_count == 0); - root->Free(); + delete root; } Song * |