SVN commit 928070 by dfaure: Fix out-of-bounds assert when smb.conf contains "path=" (empty value) (This fix will be in 4.2.1) BUG: 184144 M +1 -1 ksambashare.cpp --- branches/KDE/4.2/kdelibs/kio/kio/ksambashare.cpp #928069:928070 @@ -168,7 +168,7 @@ QString name = completeLine.left(i).trimmed().toLower(); QString value = completeLine.mid(i+1).trimmed(); - if (name == KGlobal::staticQString("path")) { + if (name == KGlobal::staticQString("path") && !value.isEmpty()) { // Handle quotation marks if ( value[0] == '"' ) value.remove(0,1);