SVN commit 1057078 by tmcguire: Don't assert here, just ignore the entry. This is used for empty directories in ZIP files. M +3 -1 karchive.cpp --- branches/KDE/3.5/kdelibs/kio/kio/karchive.cpp #1057077:1057078 @@ -588,7 +588,9 @@ void KArchiveDirectory::addEntry( KArchiveEntry* entry ) { - Q_ASSERT( !entry->name().isEmpty() ); + if( entry->name().isEmpty() ) + return; + if( m_entries[ entry->name() ] ) { kdWarning() << "KArchiveDirectory::addEntry: directory " << name() << " has entry " << entry->name() << " already" << endl;