Browse Source

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

adaptive-webui-19844
Christophe Dumez 17 years ago
parent
commit
6d0aebe9cb
  1. 6
      src/arborescence.h

6
src/arborescence.h

@ -143,7 +143,8 @@ class 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 { @@ -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;
}

Loading…
Cancel
Save