[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

QA Administrators  changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |INSUFFICIENTDATA

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

[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2022-02-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

--- Comment #10 from QA Administrators  ---
Dear CLA,

Please read this message in its entirety before proceeding.

Your bug report is being closed as INSUFFICIENTDATA due to inactivity and
a lack of information which is needed in order to accurately
reproduce and confirm the problem. We encourage you to retest
your bug against the latest release. If the issue is still
present in the latest stable release, we need the following
information (please ignore any that you've already provided):

a) Provide details of your system including your operating
   system and the latest version of LibreOffice that you have
   confirmed the bug to be present

b) Provide easy to reproduce steps – the simpler the better

c) Provide any test case(s) which will help us confirm the problem

d) Provide screenshots of the problem if you think it might help

e) Read all comments and provide any requested information

Once all of this is done, please set the bug back to UNCONFIRMED
and we will attempt to reproduce the issue. Please do not:

a) respond via email 

b) update the version field in the bug or any of the other details
   on the top section of our bug tracker

Warm Regards,
QA Team

MassPing-NeedInfo-FollowUp

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

[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2022-01-03 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

--- Comment #9 from QA Administrators  ---
Dear CLA,

This bug has been in NEEDINFO status with no change for at least
6 months. Please provide the requested information as soon as
possible and mark the bug as UNCONFIRMED. Due to regular bug
tracker maintenance, if the bug is still in NEEDINFO status with
no change in 30 days the QA team will close the bug as INSUFFICIENTDATA
due to lack of needed information.

For more information about our NEEDINFO policy please read the
wiki located here:
https://wiki.documentfoundation.org/QA/Bugzilla/Fields/Status/NEEDINFO

If you have already provided the requested information, please
mark the bug as UNCONFIRMED so that the QA team knows that the
bug is ready to be confirmed.

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

Warm Regards,
QA Team

MassPing-NeedInfo-Ping

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

[Libreoffice-bugs] [Bug 141034] Crash entire application on syntax error in basic

2021-07-07 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO

--- Comment #8 from Xisco Faulí  ---
Hello CLA,
Could you please try to reproduce it with a master build from
http://dev-builds.libreoffice.org/daily/master/ ?
You can install it alongside the standard version.
I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the bug is still present in the master build

-- 
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 141034] Crash entire application on syntax error in basic

2021-04-04 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

CLA  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #7 from CLA  ---
(In reply to Xisco Faulí from comment #6)
> Hello CLA,
> could you please try again with LibreOffice 7.1.2.2 due to be released today
> ?

Still crash on LibreOffice 7.1.2.2 / LibreOffice Community

[Note the Build: URL takes me to a 404 page - but that is another thing:
https://git.libreoffice.org/core/+log/5751006d328844ba3fa6124ed263bbf122f0788a]

-- 
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 141034] Crash entire application on syntax error in basic

2021-04-01 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

Xisco Faulí  changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #6 from Xisco Faulí  ---
Hello CLA,
could you please try again with LibreOffice 7.1.2.2 due to be released today ?

-- 
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 141034] Crash entire application on syntax error in basic

2021-03-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

himajin100...@gmail.com changed:

   What|Removed |Added

 CC||andreas.heini...@yahoo.de

--- Comment #5 from himajin100...@gmail.com ---
not reproducible on 

Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 6e4238018bf0408f2961e5708212e09a8c3597dc
CPU threads: 4; OS: Windows 10.0 Build 19042; UI render: default; VCL: win
Locale: ja-JP (ja_JP); UI: en-US
Calc: CL

When I ran Main() the values displayed were
0
false 

---
Function myResult (toTest as string) as boolean
   if ( toTest = "TEST" ) then
   myResult - true   REM should be =
   else
   myResult = false
   end if
End function

Sub Main()
Msgbox(true + 1)
Msgbox(myResult("TEST"))
End Sub
---

At least in my experiment, function call seemed callable without parentheses,
and the constant true is of value -1

so the code is parsed as 
myResult( - true )

which is equivalent to 

myResult( - (-1) )

so

myResult( 1 )

As the first parameter of myResult is of type String,
"1" was assigned to toTest, executing the following line, which is of course
correct.

myResult = false

-- 
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 141034] Crash entire application on syntax error in basic

2021-03-19 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

CLA  changed:

   What|Removed |Added

 Ever confirmed|1   |0
 Status|NEEDINFO|UNCONFIRMED

--- Comment #4 from CLA  ---
I have followed the steps in https://wiki.documentfoundation.org/UserProfile
and run libreoffice --safe-mode.
The only thing I then changed was the macro security in order to allow macros
to run.
I loaded my application again and changed the macro to have a - true (instead
of the = true, saved it and then ran the script.
The entire libreoffice crashed as before. So it is reproducible for me in safe
mode.

-- 
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 141034] Crash entire application on syntax error in basic

2021-03-18 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

Xisco Faulí  changed:

   What|Removed |Added

 Ever confirmed|0   |1
 Status|UNCONFIRMED |NEEDINFO
 CC||xiscofa...@libreoffice.org

--- Comment #3 from Xisco Faulí  ---
I get the 'not enough stack memory error'

Version: 7.2.0.0.alpha0+ / LibreOffice Community
Build ID: d7ed130f537a81b900c55d222004cc9e88c0b355
CPU threads: 4; OS: Linux 5.7; UI render: default; VCL: gtk3
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

To be certain the reported issue is not related to corruption in the user
profile, could you please reset your Libreoffice profile (
https://wiki.documentfoundation.org/UserProfile ) and re-test?

I have set the bug's status to 'NEEDINFO'. Please change it back to
'UNCONFIRMED' if the issue is still present

-- 
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 141034] Crash entire application on syntax error in basic

2021-03-17 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

--- Comment #2 from Roman Kuznetsov <79045_79...@mail.ru> ---
no repro in

Version: 7.2.0.0.alpha0+ (x64) / LibreOffice Community
Build ID: 8e49505fa7352023c252bf794ae84c9082d7264e
CPU threads: 4; OS: Windows 10.0 Build 18363; UI render: Skia/Raster; VCL: win
Locale: ru-RU (ru_RU); UI: ru-RU
Calc: threaded

I just got an error message

-- 
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 141034] Crash entire application on syntax error in basic

2021-03-15 Thread bugzilla-daemon
https://bugs.documentfoundation.org/show_bug.cgi?id=141034

--- Comment #1 from Uwe Auer  ---
No repro

Version: 7.1.1.2 / LibreOffice Community
Build ID: fe0b08f4af1bacafe4c7ecc87ce55bb426164676
CPU threads: 8; OS: Linux 5.3; UI render: default; VCL: kf5
Locale: en-US (en_US.UTF-8); UI: en-US
Calc: threaded

-- 
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