[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-04-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #23 from Caolán McNamara caol...@redhat.com ---
Created attachment 96806
  -- https://bugs.freedesktop.org/attachment.cgi?id=96806action=edit
simple debug patch

looks a straight forward delete on a pCode is that shared by multiple
ScFormulaCells

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-04-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #24 from Caolán McNamara caol...@redhat.com ---
Created attachment 96807
  -- https://bugs.freedesktop.org/attachment.cgi?id=96807action=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
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-04-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #25 from Kohei Yoshida libreoff...@kohei.us ---
BTW, I really appreciate taking the time to reduce the test document to a
minimal.  The bug sucks, but this test document is great.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-04-02 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
   Assignee|libreoffice-b...@lists.free |libreoff...@kohei.us
   |desktop.org |

--- Comment #26 from Kohei Yoshida libreoff...@kohei.us ---
This one is extremely hard to debug, but I'll take the grenade for everyone.
Someone must do it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #17 from t...@tim-passingham.co.uk ---
Is this bug report, which records irrecoverable, and therefore critical, Calc
crashes, been discarded?  I have no way round this.  It's a complete blocker
for me.

I was thinking of creating a new report to gain someone's attention, but that
seems a bit of a waste of everyone's time.

I have the debug version of LO installed, and have a simple demo sheet
attached.  What more can I do?

Help!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #18 from Joel Madero jmadero@gmail.com ---
do not report again - that would be a waste of everyone's time and lead to
someone from QA just marking as a dupe. The bug is marked as NEW, MAJOR and on
MAB list - it'll get attention

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #19 from Michael Meeks michael.me...@collabora.com ---
Hi Tim, some useful things you can do would be:

a) get a 'thread apply all backtrace' output having attached gdb to a running
process for the crash, and attach it here.

b) run valgrind --num-callers=50 ./soffice.bin --calc 21 | tee /tmp/val-log

and attach /tmp/val-log here - that -should- also point pretty directly to the
memory corruption that is prolly going on there.

Having that data (particularly the valgrind log - beware runs 100x slower or
so) - is very useful and will usually point directly at the issue.

Thanks !

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #20 from t...@tim-passingham.co.uk ---
Created attachment 96676
  -- https://bugs.freedesktop.org/attachment.cgi?id=96676action=edit
valgrind log from crash

I was hopping that a demo sheet would provide enough.  Doesn't it crash for
others if you try and modify the AcBalances named range (as per comment 15)?

I'm afraid I'm just a simple user.  I don't know how to get a 'thread apply
all backtrace' output having attached gdb to a running process for the crash. 
I have a crash dump (repeated today) from a debug version.  What should I do to
it?

However, I have installed and run valgrind as requested, and the log is
attached.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Michael Meeks michael.me...@collabora.com changed:

   What|Removed |Added

 CC||caol...@redhat.com,
   ||libreoff...@kohei.us

--- Comment #21 from Michael Meeks michael.me...@collabora.com ---
Thanks for the log - brilliant; and yes we can prolly reproduce it but
development time is really limited: the more complete the bug report the easier
it is to fix  this more attractive; this guy is the bug:

==8131== Invalid read of size 2
==8131==at 0x289B00EA:
ScFormulaCell::CompileNameFormula(sc::CompileFormulaContext, bool)
(formulacell.cxx:3458)
==8131==by 0x288B81F1:
ScColumn::CompileNameFormula(sc::CompileFormulaContext, bool)
(column2.cxx:3213)
==8131==by 0x289F56FD:
ScTable::CompileNameFormula(sc::CompileFormulaContext, bool) (table4.cxx:2074)
==8131==by 0x2890AA62: ScDocument::CompileNameFormula(bool)
(documen4.cxx:569)
==8131==by 0x28C685CD:
ScDocFunc::ModifyAllRangeNames(boost::ptr_maprtl::OUString, ScRangeName,
std::lessrtl::OUString, boost::heap_clone_allocator,
std::allocatorstd::pairrtl::OUString const, void*   const)
(docfunc.cxx:4903)
==8131==by 0x28D1C82E: ScNameDlg::Close() (namedlg.cxx:185)
==8131==by 0x28D1C6CC: ScNameDlg::LinkStubOkBtnHdl(void*, void*)
(namedlg.cxx:474)
==8131==by 0x7000A9F: Control::ImplCallEventListenersAndHandler(unsigned
long, Link const, void*) (link.hxx:123)
==8131==by 0x72892C9: Window::EndTracking(unsigned short) (window2.cxx:718)
==8131==by 0x72AAD2A: ImplHandleMouseEvent(Window*, unsigned short,
unsigned char, long, long, unsigned long, unsigned short, unsigned short)
(winproc.cxx:787)
==8131==by 0x72AC47A: ImplWindowFrameProc(Window*, SalFrame*, unsigned
short, void const*) (winproc.cxx:2066)
==8131==by 0x1D2FB136: GtkSalFrame::signalButton(_GtkWidget*,
_GdkEventButton*, void*) (salframe.hxx:243)
...
==8131==  Address 0x1baca418 is 24 bytes inside a block of size 56 free'd
==8131==at 0x4C2BADC: operator delete(void*) (in
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
==8131==by 0x289AF9E6: ScFormulaCell::Compile(sc::CompileFormulaContext,
rtl::OUString const, bool) (formulacell.cxx:1015)
==8131==by 0x289B022C:
ScFormulaCell::CompileNameFormula(sc::CompileFormulaContext, bool)
(formulacell.cxx:3461)
==8131==by 0x288B81F1:
ScColumn::CompileNameFormula(sc::CompileFormulaContext, bool)
(column2.cxx:3213)
==8131==by 0x289F56FD:
ScTable::CompileNameFormula(sc::CompileFormulaContext, bool) (table4.cxx:2074)
==8131==by 0x2890AA62: ScDocument::CompileNameFormula(bool)
(documen4.cxx:569)
==8131==by 0x28C685CD:
ScDocFunc::ModifyAllRangeNames(boost::ptr_maprtl::OUString, ScRangeName,
std::lessrtl::OUString, boost::heap_clone_allocator,
std::allocatorstd::pairrtl::OUString const, void*   const)
(docfunc.cxx:4903)
==8131==by 0x28D1C82E: ScNameDlg::Close() (namedlg.cxx:185)
==8131==by 0x28D1C6CC: ScNameDlg::LinkStubOkBtnHdl(void*, void*)
(namedlg.cxx:474)
==8131==by 0x7000A9F: Control::ImplCallEventListenersAndHandler(unsigned
long, Link const, void*) (link.hxx:123)
==8131==by 0x72892C9: Window::EndTracking(unsigned short) (window2.cxx:718)
==8131==by 0x72AAD2A: ImplHandleMouseEvent(Window*, unsigned short,
unsigned char, long, long, unsigned long, unsigned short, unsigned short)
(winproc.cxx:787)
==8131==by 0x72AC47A: ImplWindowFrameProc(Window*, SalFrame*, unsigned
short, void const*) (winproc.cxx:2066)
==8131==by 0x1D2FB136: GtkSalFrame::signalButton(_GtkWidget*,
_GdkEventButton*, void*) (salframe.hxx:243)
...

It's possible that that is related to the switch to the new UI dialog goodness
- I didn't see a ton of change in namedlg.cxx otherwise.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-31 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #22 from t...@tim-passingham.co.uk ---
Ok.  

If you need something from gdb as well you'll have to point me at some more
documentation.  I have got as far as attaching it to soffice.bin, but am
unclear when, what and how to get the backtrace you asked for.  Not ever having
tried to look at the source I'm not likely to be setting breakpoints or
debugging any time soon.  

I did find
https://wiki.documentfoundation.org/Development/How_to_debug#Debugging_with_gdb
in the wiki, but am none the wiser about getting the trace you want (at least
for now).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-25 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #16 from t...@tim-passingham.co.uk ---
Is anyone going to test my demonstration sheet and respond?  I put quite a lot
of effort into producing it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #15 from t...@tim-passingham.co.uk ---
Created attachment 96104
  -- https://bugs.freedesktop.org/attachment.cgi?id=96104action=edit
A spreadsheet demonstrating the crash

I have finally managed to remove over 90 sheets and reduce my problem
spreadsheet down to 2 sheets with no personal data, as attached.

One sheet contains a pivot table to a database.  If it asks for a password just
leave it blank and it should proceed OK.

The other sheet has some fields which reference a Named range called
AcBalances.  This refers to $AccountValsPvt.$A$1:$H$36

Use Insert, Names, Manage to change this to $AccountValsPvt.$A$1:$H$37, and
Save.  Calc crashes.

There are a host of invalid range names because I have deleted the sheets
referred to.  I can't delete most of them - I get the same crash as before. 
Please note that before I started trimming the ods back to this demonstration
version, all these ranges were valid (no #Ref) and I still got a crash every
time I tried to amend AcBalances.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #13 from Joel Madero jmadero@gmail.com ---
Moving back to NEW - Kohei doesn't get email from FDO so he may be unaware that
more info is on the bug now

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #12 from t...@tim-passingham.co.uk ---
(In reply to comment #6)
 Once Column E is removed from the document, modifying range names doens't
 cause any instability. Valgrind reports no memory issues.  So, the only
 question is how those invalid formula cells ended up in Column E (on the 2nd
 sheet) in the first place.

My sheet works fine in 4.1.4.2, so it's not a corrupt sheet in my case.  I'm
hoping to help someone research this further, as I've said above.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #14 from t...@tim-passingham.co.uk ---
Thanks very much.

Libreoffice people have usually been so quick to respond to comments that I
have got too used to it and was beginning to wonder if the problem was being
ignored. :-)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #11 from t...@tim-passingham.co.uk ---
Is anyone likely to look in to this?  I've been offering to try and help
diagnose the problem for a few days, but so far there's no response.

If no one wants further data from me I'll back out to an older version of LO. 
That will not, however, help to find and fix whatever is going on here, so I'd
rather pursue it on this (or newer) version if I can.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-15 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #10 from t...@tim-passingham.co.uk ---
I'm not running a debug version of LO, but I do now have an ubuntu crash
report.  I'd rather not publish this on a public website due to the nature of
the data in the spreadsheet.  However, I am willing to send it by private email
to someone listed as working for LibreOffice if needs be.  It isn't small (17
MB zipped). 

I have access to a dropbox if that would make it easier/safer.  I'm not sure
how easy it would be for someone to decode the contents.  Probably much easier
than I imagine, so I'd appreciate some advice.

If a debug version is needed I'll install it and try again.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-14 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #9 from t...@tim-passingham.co.uk ---
This is worse than I thought.  Having successfully replaced the sheet and named
range that I thought was causing problems with a new sheet and named range, I
cannot modify that new named range under 4.2.2.1 ubuntu 13.10 64 bit.  LO just
stops again, either immediately or when I save.

Under Windows 7, 4.1.4.2 it works fine.

To check that this is not macro related I tested the same sheet on my ubuntu
system in a different directory that wasn't trusted, and did not enable macros.
 No change.

To test things further I inserted a brand new simple named range pointing to
one cell, with no references to that name from elsewhere.  That worked OK.  On
deleting it, LO stopped again.

It now seems that to make any changes to my named ranges in this complex set of
sheets I have to use my Windows partition (and older LO version), something I
spend a lot of time trying to avoid!

I tried to reproduce the problem on a trivial ods, but have not yet succeeded. 
I'll keep trying.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

t...@tim-passingham.co.uk changed:

   What|Removed |Added

 CC||t...@tim-passingham.co.uk

--- Comment #7 from t...@tim-passingham.co.uk ---
I have a similar problem, on 4.2.2.1 Ubuntu 13.10 64 bit.

I have a complex workbook with many sheets and many named ranges.  I have two
named ranges that I cannot amend or delete without Calc crashing.  I'm not
running the debug version so don't have any crash report or evidence anywhere. 
It just stops.

As a work-around I recreated a copy of the sheet to which these two names
refer, created new names, and changed all references to use these new names. 
My data is now sound.

I still couldn't amend the two old named ranges without Calc crashing.

I then deleted the underlying sheet to which the problematic names refer.

However, I still have the two named ranges, which now have invalid references
(eg $#REF!.$A$1:$H$35) since the sheet to which they refer has been deleted. 
However, I still cannot delete or amend the names without LO just stopping.

I cannot supply the sheet, nor a crash report even if I had a debug version,
since the data is personal finance information.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #8 from t...@tim-passingham.co.uk ---
It occurred to me to try the same sheet in a different version - 4.1.4.2 -
under Windows 7. 

I deleted the two named ranges with no difficulty.

There were other differences in the environment, including the fact that macros
were not enabled because the file wasn't in a trusted folder, and there was no
link to my LibreOffice Base/MariaDb database (from which the data comes for the
sheets on a manually requested refresh to pivot tables).  

So I haven't got a decent proof that it's the LO version, but if people have
been working on Named Ranges since that version there's a clue that something
may have gone slightly awry.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #5 from Kohei Yoshida libreoff...@kohei.us ---
I'm afraid this test document has been too messed up for us to use.

This has nothing to do with named range editing.  On the 2nd sheet in Column E,
you have lots of formulas that are totally empty, which should never happen. 
How did you manage to get those in?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Kohei Yoshida libreoff...@kohei.us changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-07 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #6 from Kohei Yoshida libreoff...@kohei.us ---
Once Column E is removed from the document, modifying range names doens't cause
any instability. Valgrind reports no memory issues.  So, the only question is
how those invalid formula cells ended up in Column E (on the 2nd sheet) in the
first place.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero jmadero@gmail.com ---
No crash for me. Marking as WFM.

I am running:
Ubuntu 13.10
LibreOffice 4.2.2.1

Please try with 4.2.2.1 (which is currently rc so not recommended for daily
use). Before installing 4.2.2.1 please purge libreoffice completely from your
system. If you still experience the crash please reset your profile:

https://wiki.documentfoundation.org/UserProfile

If you still have problems please mark as UNCONFIRMED and tell us more about
your system (distro, locale, etc . . .)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|WORKSFORME  |---

--- Comment #3 from Joel Madero jmadero@gmail.com ---
Okay I take it back - it crashed when I tried to close it after modifying the
name.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |major
   Priority|medium  |highest
 Blocks||65675
 Ever confirmed|0   |1

--- Comment #4 from Joel Madero jmadero@gmail.com ---
Confirmed on:
4.2.2.1 rc

but it looks fine in 
4.3.0 build a couple days ago

Still worth marking as NEW and making sure that the commit gets backported as
we don't want managing ranges to cause crashes in 4.2 until 4.3 is released.

If 4.2.2.x release shows it to be fixed, please come back and mark as
RESOLVED-WORKSFORME so we know it's been fixed in 4.2 branch.

Thanks!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

Jorge E. Gómez jo...@jorgee.net changed:

   What|Removed |Added

   Keywords||regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 75741] Calc crashes when modifying a named range

2014-03-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75741

--- Comment #1 from Jorge E. Gómez jo...@jorgee.net ---
Created attachment 95071
  -- https://bugs.freedesktop.org/attachment.cgi?id=95071action=edit
Spreadsheet with named ranges. Crashes when managing those.

I managed to clean sensitive data from this workbook, although I deleted some
sheets that had named ranges.

Trying to modify named ranges (for instance the Llave range) crashes Calc.

Trying to delete appears to work, but it crashes when saving.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs