Mercurial > hg > vamp-plugin-load-checker
comparison src/plugincandidates.cpp @ 56:38ad8cba87a6
Remove unnecessary output
author | Chris Cannam |
---|---|
date | Wed, 16 Jan 2019 16:00:46 +0000 |
parents | 81ce3ba92b16 |
children | ef64b3f171d9 |
comparison
equal
deleted
inserted
replaced
55:81ce3ba92b16 | 56:38ad8cba87a6 |
---|---|
282 { | 282 { |
283 p->setReadChannel(QProcess::StandardError); | 283 p->setReadChannel(QProcess::StandardError); |
284 | 284 |
285 qint64 byteCount = p->bytesAvailable(); | 285 qint64 byteCount = p->bytesAvailable(); |
286 if (byteCount == 0) { | 286 if (byteCount == 0) { |
287 log("Helper emitted no stderr output"); | |
288 p->setReadChannel(QProcess::StandardOutput); | 287 p->setReadChannel(QProcess::StandardOutput); |
289 return; | 288 return; |
290 } | 289 } |
291 | 290 |
292 QByteArray buffer = p->read(byteCount); | 291 QByteArray buffer = p->read(byteCount); |