https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #24 from Caolán McNamara <[email protected]> ---
Created attachment 96807
  --> https://bugs.freedesktop.org/attachment.cgi?id=96807&action=edit
search for "deleting"

Search for "deleting" and there the pCode is deleted by object 0x343c9f0 and
then we go a GetLen on it from a different object 0x342c640.

In the absence of knowing what the code wants to do we could throw shared_ptrs
at the problem, or as a lunatic workaround seeing as in this case I see that
the second leg of the && is always false a hackaround could be to reverse the
order of comparison there of
-else if ( !pCode->GetLen() && !aResult.GetHybridFormula().isEmpty() )
to
+else if ( !aResult.GetHybridFormula().isEmpty() && !pCode->GetLen() )

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to