Internals: Remove dead output variable. No functional change.

This commit is contained in:
Wilson Snyder 2021-11-26 15:13:36 -05:00
parent 2742a8c813
commit b0018fd680
1 changed files with 1 additions and 3 deletions

View File

@ -394,8 +394,7 @@ private:
#endif
}
string readBlocks(int fd, int size, StrList& outl) {
string out;
void readBlocks(int fd, int size, StrList& outl) {
char buf[INFILTER_IPC_BUFSIZ];
ssize_t sizegot = 0;
while (!m_readEof && (size < 0 || size > sizegot)) {
@ -421,7 +420,6 @@ private:
break;
}
}
return out;
}
// cppcheck-suppress unusedFunction unusedPrivateFunction
string readFilterLine() {