[Bug 107492] : OutOfBound error when cells are deleted

2024-04-13 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #8 from QA Administrators  ---
Dear Denis Dobbin,

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
https://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://web.libera.chat/?settings=#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-04-12 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

Aron Budea  changed:

   What|Removed |Added

   See Also||https://bugs.documentfounda
   ||tion.org/show_bug.cgi?id=10
   ||1910

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #6 from Julien Nabet  ---
25 times warn:legacy.osl:83214:83214:sc/source/ui/unoobj/cellsuno.cxx:4592:
What ranges ?!?! with the patch

16 times without. But perhaps it's because the script stops with outofbound
error.

Anyway, the patch doesn't fix this warn for sure.

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #5 from Xisco Faulí  ---
(In reply to Julien Nabet from comment #4)
> Just forgot to tell that I noticed this log several times:
> warn:legacy.osl:83214:83214:sc/source/ui/unoobj/cellsuno.cxx:4592: What
> ranges ?!?!

With your patch or without it ?

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #4 from Julien Nabet  ---
Just forgot to tell that I noticed this log several times:
warn:legacy.osl:83214:83214:sc/source/ui/unoobj/cellsuno.cxx:4592: What ranges
?!?!

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2020-01-21 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

Julien Nabet  changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet  ---
On pc Debian x86-64 with master sources updated today, I could reproduce this.
Reverting partly the patch makes it work:
diff --git a/sc/source/core/tool/rangelst.cxx
b/sc/source/core/tool/rangelst.cxx
index 76b68d1a1b27..7ff6f96b2585 100644
--- a/sc/source/core/tool/rangelst.cxx
+++ b/sc/source/core/tool/rangelst.cxx
@@ -353,11 +353,11 @@ bool ScRangeList::UpdateReference(
 {
 if(nDx < 0)
 {
-bChanged = DeleteArea(nCol1+nDx, nRow1, nTab1, nCol1-1, nRow2,
nTab2);
+DeleteArea(nCol1+nDx, nRow1, nTab1, nCol1-1, nRow2, nTab2);
 }
 if(nDy < 0)
 {
-bChanged = DeleteArea(nCol1, nRow1+nDy, nTab1, nCol2, nRow1-1,
nTab2);
+DeleteArea(nCol1, nRow1+nDy, nTab1, nCol2, nRow1-1, nTab2);
 }
 SAL_WARN_IF(nDx < 0 && nDy < 0, "sc", "nDx and nDy are negative,
check why");

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2018-04-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

--- Comment #2 from QA Administrators  ---
** Please read this message in its entirety before responding **

To make sure we're focusing on the bugs that affect our users today,
LibreOffice QA is asking bug reporters and confirmers to retest open, confirmed
bugs which have not been touched for over a year.

There have been thousands of bug fixes and commits since anyone checked on this
bug report. During that time, it's possible that the bug has been fixed, or the
details of the problem have changed. We'd really appreciate your help in
getting confirmation that the bug is still present.

If you have time, please do the following:

Test to see if the bug is still present with the latest version of LibreOffice
from https://www.libreoffice.org/download/

If the bug is present, please leave a comment that includes the information
from Help - About LibreOffice.

If the bug is NOT present, please set the bug's Status field to
RESOLVED-WORKSFORME and leave a comment that includes the information from Help
- About LibreOffice.

Please DO NOT

Update the version field
Reply via email (please reply directly on the bug tracker)
Set the bug's Status field to RESOLVED - FIXED (this status has a particular
meaning that is not 
appropriate in this case)


If you want to do more to help you can test to see if your issue is a
REGRESSION. To do so:
1. Download and install oldest version of LibreOffice (usually 3.3 unless your
bug pertains to a feature added after 3.3) from
http://downloadarchive.documentfoundation.org/libreoffice/old/

2. Test your bug
3. Leave a comment with your results.
4a. If the bug was present with 3.3 - set version to 'inherited from OOo';
4b. If the bug was not present in 3.3 - add 'regression' to keyword


Feel free to come ask questions or to say hello in our QA chat:
https://kiwiirc.com/nextclient/irc.freenode.net/#libreoffice-qa

Thank you for helping us make LibreOffice even better for everyone!

Warm Regards,
QA Team

MassPing-UntouchedBug

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


[Libreoffice-bugs] [Bug 107492] : OutOfBound error when cells are deleted

2017-04-27 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=107492

Xisco Faulí  changed:

   What|Removed |Added

   Keywords||bibisected, bisected,
   ||regression
 Status|UNCONFIRMED |NEW
 CC||markus.mohrhard@googlemail.
   ||com,
   ||xiscofa...@libreoffice.org
Version|5.3.2.2 release |5.3.0.0.alpha0+
 Ever confirmed|0   |1
 OS|Windows (All)   |All

--- Comment #1 from Xisco Faulí  ---
Regression introduced by:

author  Markus Mohrhard 2016-09-30
23:31:09 (GMT)
committer   Markus Mohrhard    
2016-10-01 02:06:23 (GMT)
commit  5f658dc87794036182aa1f8586d82c5ee997cd8b (patch)
tree163168c022de64266238818c339f9d3e96ceea57
parent  cf4ff92144726a91508fcaf4be21170eac5cb99a (diff)
tdf#101910, mark ScRangeList updated when DeleteArea was used

Bisected with bibisect-linux-64-5.3

Adding Cc: to Markus Mohrhard

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