Bug 479346 - Go code crashes Plasma Shell
Summary: Go code crashes Plasma Shell
Status: RESOLVED NOT A BUG
Alias: None
Product: plasmashell
Classification: Plasma
Component: general (show other bugs)
Version: 5.27.10
Platform: Manjaro Linux
: NOR crash
Target Milestone: 1.0
Assignee: Plasma Bugs List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2024-01-03 08:42 UTC by Murat Çileli
Modified: 2024-01-12 12:56 UTC (History)
3 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:
murat.cileli: X11+


Attachments
Go code (23.61 KB, image/png)
2024-01-03 08:42 UTC, Murat Çileli
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Murat Çileli 2024-01-03 08:42:21 UTC
Created attachment 164645 [details]
Go code

Following Go code crashes Plasma.

package main

func main() {
	var notes []int
	for i := 0; i < 1e12; i++ {
		notes = append(notes, i)
	}
}

STEPS TO REPRODUCE
1. Copy / paste the code
2. Run Go code

SOFTWARE/OS VERSIONS
Linux/KDE Plasma: 6.6.9-1-MANJARO (64-bit)
KDE Plasma Version: 5.27.10
KDE Frameworks Version: 5.113.0 5.15.11
Qt Version: 5.15.11
Comment 1 Akseli Lahtinen 2024-01-12 12:56:16 UTC
Seems that runs out of memory. You're appending one trillion items.