diff options
author | Max Kellermann <max@duempel.org> | 2014-05-11 18:34:09 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2014-05-12 18:59:46 +0200 |
commit | 0b4fa41aff35ac8d190e5daaeed12f12614a0e9c (patch) | |
tree | 02da5a37e93198e969a28072b555595292ce688b /src/lib/expat/ExpatParser.cxx | |
parent | e138e2c880d2e5ae4728bd821e3a2789cb605a11 (diff) | |
download | mpd-0b4fa41aff35ac8d190e5daaeed12f12614a0e9c.tar.gz mpd-0b4fa41aff35ac8d190e5daaeed12f12614a0e9c.tar.xz mpd-0b4fa41aff35ac8d190e5daaeed12f12614a0e9c.zip |
InputStream: "protect" attributes
Diffstat (limited to 'src/lib/expat/ExpatParser.cxx')
-rw-r--r-- | src/lib/expat/ExpatParser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/expat/ExpatParser.cxx b/src/lib/expat/ExpatParser.cxx index b69dc55b4..c6b1abe76 100644 --- a/src/lib/expat/ExpatParser.cxx +++ b/src/lib/expat/ExpatParser.cxx @@ -51,7 +51,7 @@ ExpatParser::Parse(const char *data, size_t length, bool is_final, bool ExpatParser::Parse(InputStream &is, Error &error) { - assert(is.ready); + assert(is.IsReady()); while (true) { char buffer[4096]; |