aboutsummaryrefslogtreecommitdiffstats
path: root/src/db
diff options
context:
space:
mode:
Diffstat (limited to 'src/db')
-rw-r--r--src/db/UpnpDatabasePlugin.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/db/UpnpDatabasePlugin.cxx b/src/db/UpnpDatabasePlugin.cxx
index baea8cb38..b746e28cb 100644
--- a/src/db/UpnpDatabasePlugin.cxx
+++ b/src/db/UpnpDatabasePlugin.cxx
@@ -254,12 +254,10 @@ dquote(std::string &out, const char *in)
case '\\':
case '"':
out.push_back('\\');
- out.push_back(*in);
break;
-
- default:
- out.push_back(*in);
}
+
+ out.push_back(*in);
}
out.push_back('"');