By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2392
Collapse All | Expand All

(-)a/mimetypes/application/octet-stream.desktop (+1 lines)
Lines 1-6 Link Here
1
[Desktop Entry]
1
[Desktop Entry]
2
Type=MimeType
2
Type=MimeType
3
MimeType=application/octet-stream
3
MimeType=application/octet-stream
4
X-TDE-PatternsAccuracy=0
4
Comment=Unknown
5
Comment=Unknown
5
Comment[af]=Onbekende
6
Comment[af]=Onbekende
6
Comment[ar]=غير معروف
7
Comment[ar]=غير معروف
(-)a/tdeio/tdeio/kmimetype.cpp (-2 / +6 lines)
Lines 221-228 KMimeType::Ptr KMimeType::findByURL( const KURL& _url, mode_t _mode, Link Here
221
                    KMimeMagicResult* result =
221
                    KMimeMagicResult* result =
222
                            KMimeMagic::self()->findFileType( path );
222
                            KMimeMagic::self()->findFileType( path );
223
223
224
                    if ( result && result->isValid() && result->accuracy() > 0 )
224
                    if ( result && result->isValid() && result->accuracy() > 0 ) {
225
                        return mimeType( result->mimeType() );
225
                        KMimeType::Ptr resultMime = mimeType( result->mimeType() );
226
                        if (resultMime->patternsAccuracy() > 0) {
227
                            return resultMime;
228
                        }
229
                    }
226
                }
230
                }
227
            }
231
            }
228
232

Return to bug 2392