author | tille <tille> | 2002-07-24 11:49:21 (UTC) |
---|---|---|
committer | tille <tille> | 2002-07-24 11:49:21 (UTC) |
commit | 919228ff6aeb72b6d2585ae108e86d27d0b6bdb1 (patch) (side-by-side diff) | |
tree | 329dae48711cda4d05b0e7c02ae3a329b80606ff /noncore | |
parent | adfb21cd5e2fcf750543570ab9c6427f1fba9968 (diff) | |
download | opie-919228ff6aeb72b6d2585ae108e86d27d0b6bdb1.zip opie-919228ff6aeb72b6d2585ae108e86d27d0b6bdb1.tar.gz opie-919228ff6aeb72b6d2585ae108e86d27d0b6bdb1.tar.bz2 |
hopeing to fix bug #119
-rw-r--r-- | noncore/unsupported/oipkg/pmipkg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/unsupported/oipkg/pmipkg.cpp b/noncore/unsupported/oipkg/pmipkg.cpp index 11c0f97..7682d49 100644 --- a/noncore/unsupported/oipkg/pmipkg.cpp +++ b/noncore/unsupported/oipkg/pmipkg.cpp @@ -161,17 +161,17 @@ void PmIpkg::linkPackage( QString packFileName, QString dest ) if (dest == "root" || dest == "/" ) return; QStringList *fileList = getList( packFileName, dest ); processFileList( fileList, dest ); delete fileList; } void PmIpkg::processFileList( QStringList *fileList, QString d ) { - if (!fileList) return; + if (!fileList || fileList->isEmpty()) return; for (uint i=0; i < fileList->count(); i++) { QString dest = settings->getDestinationUrlByName( d ); dest = dest==""?d:dest; processLinkDir( (*fileList)[i], dest ); } } @@ -287,17 +287,17 @@ void PmIpkg::remove() { if ( to_remove.count() == 0 ) return; out(tr("Removing")+"\n"+tr("please wait")+"\n\n"); QStringList *fileList; for (uint i=0; i < to_remove.count(); i++) { - if ( to_remove.at(i)->link() )fileList = getList( to_remove.at(i)->name(), to_remove.at(i)->dest() ); + if ( to_remove.at(i)->link() ) fileList = getList( to_remove.at(i)->name(), to_remove.at(i)->dest() ); if ( runIpkg("remove " + to_remove.at(i)->installName(), to_remove.at(i)->dest() )) { runwindow->progress->setProgress( 1 ); linkOpp = removeLink; to_remove.at(i)->processed(); pvDebug(3,"link "+QString::number(i)); if ( to_remove.at(i)->link() ) processFileList( fileList, to_remove.at(i)->dest() ); |