[Github-comments] Re: [geany/geany] Fix read past end of string in utils_get_initials() (PR #3844)

2024-04-16 Thread elextr via Github-comments
This is a function that has only a single user but has been pulled out and put in another file to make life more complicated instead of doing it locally where the conditions of the parameters are visible [end rant]. The overflow is when name is `\0` and the use probably thinks it is never

[Github-comments] [geany/geany] Fix read past end of string in utils_get_initials() (PR #3844)

2024-04-16 Thread George Katevenis via Github-comments
Hi, this PR fixes this error spotted in Valgrind: ``` Invalid read of size 1 at 0x49211F3: utils_get_initials (utils.c:775) by 0x48EBA56: load_dialog_prefs (keyfile.c:1025) by 0x48EBA56: read_config_file (keyfile.c:1258) by 0x48ED7C7: configuration_load (keyfile.c:1286) by

[Github-comments] Re: [geany/geany-plugins] VTE doesn't eat enclosing characters when geany-addons is active and "Enclose selection without a shortcut" is enabled. (Issue #1181)

2024-04-16 Thread 3-14152898 via Github-comments
Sorry for being late at the party. I'll close this issue. I've stopped my investigations a while ago, turns out way too complicated for me to understand it all. I've scraped the code and end up with no idea where the problem lies, even less how to fix it. I'll live with it and rant anytime it

[Github-comments] Re: [geany/geany-plugins] VTE doesn't eat enclosing characters when geany-addons is active and "Enclose selection without a shortcut" is enabled. (Issue #1181)

2024-04-16 Thread 3-14152898 via Github-comments
Closed #1181 as completed. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/issues/1181#event-12490723398 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread elextr via Github-comments
There are some reports of weirdnesses with XWayland and GTK, which have been fixed by running Geany as Wayland as I mentioned. But havn't had any reports that can be traced to real xorg and GTK (that my quick search on Geany issues found anyway), and it is just fine on my Linux Mint (which is

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread FxZng via Github-comments
Looks like this it is not new issue. First reported 2 year back on Fedora thread. Probably not geany specific, but some odd interaction between gdk3 and x11 -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3843#issuecomment-2058934069 You are

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread FxZng via Github-comments
Thanks I will give at shot. My current default backed is x11 -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3843#issuecomment-2058915676 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread elextr via Github-comments
Sounds like something is wrong with your brand new Ubuntu. Are you running Wayland? If so try `GDK_BACKEND=wayland geany`. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3843#issuecomment-2058899522 You are receiving this because you are subscribed

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread FxZng via Github-comments
I have also built current geany 2.0. It runs with same outcome (.i.e crashes when attempting to select any text) -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/issues/3843#issuecomment-205841 You are receiving this because you are subscribed to this

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread FxZng via Github-comments
This is geany 1.38 Below is complete debug log GNU gdb (Ubuntu 12.1-0ubuntu1~22.04) 12.1 Copyright (C) 2022 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software: you are free to change and redistribute it. There is NO

[Github-comments] Re: [geany/geany] Rename both scope and var_type of anonymous types (PR #3785)

2024-04-16 Thread Bernhard M. Wiedemann via Github-comments
When will this be merged? -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany/pull/3785#issuecomment-2058863905 You are receiving this because you are subscribed to this thread. Message ID:

[Github-comments] Re: [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread elextr via Github-comments
Its hard to say anything except that the problem occurs inside the X11 library called from GDK called from GTK during the initialisation of the displays called from Geany at line `#11`. We don't even know the version of Geany. -- Reply to this email directly or view it on GitHub:

[Github-comments] [geany/geany] geany crashes on ubuntu/mate 22.04 when attempting to select text (Issue #3843)

2024-04-16 Thread FxZng via Github-comments
Running on fresh install of ubuntu/mate 22.04. Crash is consistent, any time I try to select some text using either keyboard or mouse thread 1 "geany" received signal SIGSEGV, Segmentation fault. 0x76603104 in XVisualIDFromVisual () from /lib/x86_64-linux-gnu/libX11.so.6 (gdb) bt #0

[Github-comments] [geany/geany-plugins] Vimode: fix cursor position after using undo (PR #1328)

2024-04-16 Thread cresto sylvain via Github-comments
Trying to get more Vim-like behavior for cursor position after using undo (U key) You can view, comment on, or merge this pull request online at: https://github.com/geany/geany-plugins/pull/1328 -- Commit Summary -- * fix cursor position after using undo (u key) -- File Changes -- M

[Github-comments] [geany/geany-plugins] Vimode: Added folding support (PR #1327)

2024-04-16 Thread cresto sylvain via Github-comments
Supported commands are: za / zo / zc toggle / open / close fold on one level of folding zA / zO / zCtoggle / open / close fold on all folding levels zR / zM open / close all folds You can view, comment on, or merge this pull request online at:

[Github-comments] Re: [geany/geany-plugins] Fix cursor hang with folded lines (PR #1326)

2024-04-16 Thread cresto sylvain via Github-comments
Reopened #1326. -- Reply to this email directly or view it on GitHub: https://github.com/geany/geany-plugins/pull/1326#event-12486535931 You are receiving this because you are subscribed to this thread. Message ID: