- Edit a bit of code in torrent permanent deletion to make sure all files are actually deleted

This commit is contained in:
Christophe Dumez 2007-09-16 15:13:32 +00:00
commit 6d0aebe9cb

View file

@ -143,7 +143,8 @@ class file {
file *f;
qDebug("We have %d children", children.size());
foreach(f, children) {
success = f->removeFromFS(saveDir) && success;
bool s = f->removeFromFS(saveDir);
success = s && success;
}
if(is_dir) {
qDebug("trying to remove directory: %s", full_path.toUtf8().data());
@ -151,7 +152,8 @@ class file {
dir.rmdir(full_path);
} else {
qDebug("trying to remove file: %s", full_path.toUtf8().data());
success = QFile::remove(full_path) && success;
bool s = QFile::remove(full_path);
success = s && success;
}
return success;
}