diff options
author | Max Kellermann <max@duempel.org> | 2013-11-04 18:11:15 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2013-11-04 18:11:15 +0100 |
commit | eab1a776838815b4d7b1ac01cc7bcf5f56d3bfd9 (patch) | |
tree | 9c1e2781ec63f129df424dbaa8b313f12dc071ca /src | |
parent | 84f5e0c0de1f4adda01b63095979d5d0e3e00593 (diff) | |
download | mpd-eab1a776838815b4d7b1ac01cc7bcf5f56d3bfd9.tar.gz mpd-eab1a776838815b4d7b1ac01cc7bcf5f56d3bfd9.tar.xz mpd-eab1a776838815b4d7b1ac01cc7bcf5f56d3bfd9.zip |
ClientRead: always ignore whitespace at the end of the line
Diffstat (limited to '')
-rw-r--r-- | src/ClientRead.cxx | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ClientRead.cxx b/src/ClientRead.cxx index 2bb3c56c0..925e1502d 100644 --- a/src/ClientRead.cxx +++ b/src/ClientRead.cxx @@ -21,6 +21,7 @@ #include "ClientInternal.hxx" #include "Main.hxx" #include "event/Loop.hxx" +#include "util/CharUtil.hxx" #include <assert.h> #include <string.h> @@ -35,11 +36,15 @@ Client::OnSocketInput(void *data, size_t length) TimeoutMonitor::ScheduleSeconds(client_timeout); + BufferedSocket::ConsumeInput(newline + 1 - p); + + /* skip whitespace at the end of the line */ + while (newline > p && IsWhitespaceOrNull(newline[-1])) + --newline; + /* terminate the string at the end of the line */ *newline = 0; - BufferedSocket::ConsumeInput(newline + 1 - p); - CommandResult result = client_process_line(*this, p); switch (result) { case CommandResult::OK: |