diff -r 10e98eab6f85 -r a359256acfc6 webengine/osswebengine/WebKit/s60/plugins/PluginStream.cpp --- a/webengine/osswebengine/WebKit/s60/plugins/PluginStream.cpp Fri Jul 03 15:54:40 2009 +0100 +++ b/webengine/osswebengine/WebKit/s60/plugins/PluginStream.cpp Thu Aug 27 07:44:59 2009 +0300 @@ -282,6 +282,11 @@ fileExtPtr.Set(fileExtPtr.Left(i)); } + // remove any '/' at the end + if ( fileExtPtr[fileExtPtr.Length() - 1] == '/' ) { + fileExtPtr.Set(fileExtPtr.Left(fileExtPtr.Length() - 1)); + } + // Trim anything left of path, the last '/' // "http://www.xyz.com/flashy.swf" -> "flashy.swf" i = fileExtPtr.LocateReverse('/');