You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
445 B
19 lines
445 B
Index: kioslave/media/mediaimpl.cpp
|
|
===================================================================
|
|
--- kioslave/media/mediaimpl.cpp.orig
|
|
+++ kioslave/media/mediaimpl.cpp
|
|
@@ -274,6 +274,13 @@ bool MediaImpl::ensureMediumMounted(Medi
|
|
return m_lastErrorCode==0;
|
|
}
|
|
|
|
+ if (medium.id().isEmpty())
|
|
+ {
|
|
+ m_lastErrorCode = KIO::ERR_COULD_NOT_MOUNT;
|
|
+ m_lastErrorMessage = i18n("No such medium.");
|
|
+ return false;
|
|
+ }
|
|
+
|
|
return true;
|
|
}
|
|
|