diff options
author | Max Kellermann <max@duempel.org> | 2014-01-16 09:07:52 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-01-16 09:07:52 +0100 |
commit | a8277148230bf02c89656e3839b72d77e8d91cf0 (patch) | |
tree | d35a41695297d624028280797dc81d0f49136878 /src/db/UpnpDatabasePlugin.cxx | |
parent | 8f9e76ca422b4182672aeb870d208e0881ca20f6 (diff) | |
download | mpd-a8277148230bf02c89656e3839b72d77e8d91cf0.tar.gz mpd-a8277148230bf02c89656e3839b72d77e8d91cf0.tar.xz mpd-a8277148230bf02c89656e3839b72d77e8d91cf0.zip |
db/upnp: don't initialize attributes to nullptr
Not necessary, these are not used.
Diffstat (limited to 'src/db/UpnpDatabasePlugin.cxx')
-rw-r--r-- | src/db/UpnpDatabasePlugin.cxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/db/UpnpDatabasePlugin.cxx b/src/db/UpnpDatabasePlugin.cxx index 48dff67ae..5381b30a9 100644 --- a/src/db/UpnpDatabasePlugin.cxx +++ b/src/db/UpnpDatabasePlugin.cxx @@ -57,10 +57,6 @@ class UpnpDatabase : public Database { Directory *m_root; public: - UpnpDatabase() - : m_lib(0), m_superdir(0), m_root(0) - {} - static Database *Create(EventLoop &loop, DatabaseListener &listener, const config_param ¶m, Error &error); |