server: properly delete output-stream files
logic inversion
This commit is contained in:
@ -108,7 +108,7 @@ struct OutputStream {
|
|||||||
* longer needed.
|
* longer needed.
|
||||||
*/
|
*/
|
||||||
void unlink () {
|
void unlink () {
|
||||||
if (!fname_.empty())
|
if (fname_.empty())
|
||||||
return;
|
return;
|
||||||
if (auto&&res{::unlink(fname_.c_str())}; res != 0)
|
if (auto&&res{::unlink(fname_.c_str())}; res != 0)
|
||||||
mu_warning("failed to unlink '{}'", ::strerror(res));
|
mu_warning("failed to unlink '{}'", ::strerror(res));
|
||||||
@ -707,7 +707,7 @@ Server::Private::output_results(const QueryResults& qres, size_t batch_size) con
|
|||||||
// structured bindings / lambda don't work with some clang.
|
// structured bindings / lambda don't work with some clang.
|
||||||
|
|
||||||
mu_print(out, "(");
|
mu_print(out, "(");
|
||||||
for(auto&& mi: qres) {
|
for (auto&& mi: qres) {
|
||||||
|
|
||||||
auto msg{mi.message()};
|
auto msg{mi.message()};
|
||||||
if (!msg)
|
if (!msg)
|
||||||
|
|||||||
Reference in New Issue
Block a user