Summary: | Crash while tweaking HSV value on a huge file | ||
---|---|---|---|
Product: | [Applications] krita | Reporter: | Philippe Nicloux <phil.nicloux> |
Component: | General | Assignee: | Krita Bugs <krita-bugs-null> |
Status: | RESOLVED DUPLICATE | ||
Severity: | crash | CC: | dimula73, halla |
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Philippe Nicloux
2012-10-24 16:08:37 UTC
Hi Philippe, I wonder what's going on here -- I cannot reproduce it myself, but that might just be because my computer is quite fast. Maybe Dmitry has an idea? It's also quite strange, the crash is on the line filteredRect = filter->changedRect(rect, m_d->filterConfig); Which suggests that filter is 0, and that can only be caused because the filter cannot be found -- but that's impossible. Since you compile krita yourself and can reproduce this issue, could you try the following changes: open calligra/krita/image/kis_filter_mask.cc And instead of the line above, use these three lines: if (filter) { filteredRect = filter->changedRect(rect, m_d->filterConfig); } Compile and install, then try to reproduce again. It must be a problem of a filter configuration lifetime. I've created a separate bug for it. *** This bug has been marked as a duplicate of bug 309099 *** |