Commit 94f8e6806f0489adba32827418b5d2e985bde48d
1 parent
371ed356
minor fix
Showing
1 changed file
with
1 additions
and
1 deletions
sdk/plugins/youtube.cpp
| ... | ... | @@ -33,7 +33,7 @@ class YouTubeFacesDBTransform : public UntrainableMetaTransform |
| 33 | 33 | mutex.lock(); |
| 34 | 34 | int result = 0; |
| 35 | 35 | if (!QFileInfo(matrix).exists()) |
| 36 | - QProcess::execute(QCoreApplication::applicationFilePath(), arguments); | |
| 36 | + result = QProcess::execute(QCoreApplication::applicationFilePath(), arguments); | |
| 37 | 37 | mutex.unlock(); |
| 38 | 38 | |
| 39 | 39 | if (result != 0) | ... | ... |