| Summary: | konqueror crashes with mouse over AVI file | ||
|---|---|---|---|
| Product: | [Unmaintained] kfile-plugins | Reporter: | Jens <jens-bugs.kde.org> |
| Component: | avi | Assignee: | Multimedia Bugs <multimedia-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | crash | CC: | jmic |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | crashing avi file | ||
|
Description
Jens
2004-01-08 19:31:02 UTC
*** Bug 72177 has been marked as a duplicate of this bug. *** please attach the file with the standard bugs.kde.org attachment function. I can't decode your file. Subject: Re: konqueror crashes with mouse over AVI file
On Thu, Jan 08, 2004 at 06:35:49PM -0000, George Staikos wrote:
> please attach the file with the standard bugs.kde.org attachment
> function. I can't decode your file.
it's uuencoded.
Created attachment 4464 [details]
crashing avi file
This is the attachment that the original poster inlined. Oh, and it does cause
the crash.
*** Bug 62187 has been marked as a duplicate of this bug. *** There is a marginal looking backtrace in 62187. Subject: kdemultimedia/kfile-plugins/avi CVS commit by bhards: The old "divide by zero" flaw strikes again. This is a 3.2 backport candidate (given that it causes a crash). CCMAIL: 72176-done@bugs.kde.org M +3 -1 kfile_avi.cpp 1.17 --- kdemultimedia/kfile-plugins/avi/kfile_avi.cpp #1.16:1.17 @@ -509,5 +509,7 @@ bool KAviPlugin::readInfo( KFileMetaInfo KFileMetaInfoGroup group = appendGroup(info, "Technical"); + if (0 != avih_microsecperframe) { appendItem(group, "Frame rate", int(1000000 / avih_microsecperframe)); + } appendItem(group, "Resolution", QSize(avih_width, avih_height)); |