Internals: Remove dead output variable. No functional change.
This commit is contained in:
parent
2742a8c813
commit
b0018fd680
|
|
@ -394,8 +394,7 @@ private:
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
string readBlocks(int fd, int size, StrList& outl) {
|
void readBlocks(int fd, int size, StrList& outl) {
|
||||||
string out;
|
|
||||||
char buf[INFILTER_IPC_BUFSIZ];
|
char buf[INFILTER_IPC_BUFSIZ];
|
||||||
ssize_t sizegot = 0;
|
ssize_t sizegot = 0;
|
||||||
while (!m_readEof && (size < 0 || size > sizegot)) {
|
while (!m_readEof && (size < 0 || size > sizegot)) {
|
||||||
|
|
@ -421,7 +420,6 @@ private:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return out;
|
|
||||||
}
|
}
|
||||||
// cppcheck-suppress unusedFunction unusedPrivateFunction
|
// cppcheck-suppress unusedFunction unusedPrivateFunction
|
||||||
string readFilterLine() {
|
string readFilterLine() {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue