GNU bug report logs -
#57208
29.0.50; Uninitialized compilation warnings in xterm.c
Previous Next
Reported by: "Basil L. Contovounesios" <contovob <at> tcd.ie>
Date: Sun, 14 Aug 2022 15:58:02 UTC
Severity: minor
Tags: moreinfo, patch
Found in version 29.0.50
Done: Stefan Kangas <stefankangas <at> gmail.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 57208 in the body.
You can then email your comments to 57208 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
luangruo <at> yahoo.com, bug-gnu-emacs <at> gnu.org
:
bug#57208
; Package
emacs
.
(Sun, 14 Aug 2022 15:58:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
"Basil L. Contovounesios" <contovob <at> tcd.ie>
:
New bug report received and forwarded. Copy sent to
luangruo <at> yahoo.com, bug-gnu-emacs <at> gnu.org
.
(Sun, 14 Aug 2022 15:58:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Severity: minor
Tags: patch
Compiling with GCC 12 and -Og, I get the following -Wmaybe-uninitialized
warnings:
xterm.c: In function ‘x_dnd_free_toplevels’:
xterm.c:2918:17: warning: ‘dpy’ may be used uninitialized [-Wmaybe-uninitialized]
2918 | dpyinfo = x_display_info_for_display (dpy);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
xterm.c:2853:12: note: ‘dpy’ was declared here
2853 | Display *dpy;
| ^~~
xterm.c: In function ‘xm_setup_dnd_targets’:
xterm.c:2284:21: warning: ‘recs’ may be used uninitialized [-Wmaybe-uninitialized]
2284 | recs[header.target_list_count - 1]->targets[i] = targets_sorted[i];
| ^
xterm.c:2112:26: note: ‘recs’ was declared here
2112 | xm_targets_table_rec **recs;
| ^~~~
They're bogus, right? Is it okay to silence them as follows?
[0001-Pacify-maybe-uninitialized-warnings-in-xterm.c.patch (text/x-diff, inline)]
From d14b6fa375ce7a9eded5d0aeae52c8eac893e4de Mon Sep 17 00:00:00 2001
From: "Basil L. Contovounesios" <contovob <at> tcd.ie>
Date: Sun, 14 Aug 2022 18:33:45 +0300
Subject: [PATCH] Pacify maybe-uninitialized warnings in xterm.c
* src/xterm.c (xm_setup_dnd_targets, x_dnd_free_toplevels):
Initialize two pointers as NULL early, to pacify GCC 12
-Wmaybe-uninitialized warnings when compiling with -Og.
---
src/xterm.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/xterm.c b/src/xterm.c
index 6cf44e162b..e7ee5fd32e 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -2109,7 +2109,7 @@ xm_setup_dnd_targets (struct x_display_info *dpyinfo,
int rc, actual_format, idx;
bool had_errors;
xm_targets_table_header header;
- xm_targets_table_rec **recs;
+ xm_targets_table_rec **recs = NULL;
xm_byte_order byteorder;
uint8_t *data;
ptrdiff_t total_bytes, total_items, i;
@@ -2850,7 +2850,7 @@ x_dnd_free_toplevels (bool display_alive)
Window *destroy_windows UNINIT;
unsigned long *prev_masks UNINIT;
specpdl_ref count;
- Display *dpy;
+ Display *dpy = NULL;
struct x_display_info *dpyinfo;
if (!x_dnd_toplevels)
--
2.35.1
[Message part 3 (text/plain, inline)]
Thanks,
--
Basil
In GNU Emacs 29.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo version 1.16.0, Xaw3d scroll bars)
of 2022-08-14 built on tia
Repository revision: 1d3fe256907d5e78a4acedd194e55db8ab952952
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12101004
System Description: Debian GNU/Linux bookworm/sid
Configured using:
'configure CC=gcc-12 'CFLAGS=-Og -ggdb3' --config-cache
--prefix=/home/blc/.local --enable-checking=structs
--with-file-notification=yes --with-x-toolkit=lucid --with-x'
Configured features:
ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG
JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NOTIFY
INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF
TOOLKIT_SCROLL_BARS WEBP X11 XAW3D XDBE XIM XINPUT2 XPM LUCID ZLIB
Important settings:
value of $LANG: en_IE.UTF-8
value of $XMODIFIERS: @im=ibus
locale-coding-system: utf-8-unix
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#57208
; Package
emacs
.
(Mon, 15 Aug 2022 00:53:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 57208 <at> debbugs.gnu.org (full text, mbox):
"Basil L. Contovounesios" <contovob <at> tcd.ie> writes:
> Severity: minor
> Tags: patch
>
> Compiling with GCC 12 and -Og, I get the following -Wmaybe-uninitialized
> warnings:
>
> xterm.c: In function ‘x_dnd_free_toplevels’:
> xterm.c:2918:17: warning: ‘dpy’ may be used uninitialized [-Wmaybe-uninitialized]
> 2918 | dpyinfo = x_display_info_for_display (dpy);
> | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> xterm.c:2853:12: note: ‘dpy’ was declared here
> 2853 | Display *dpy;
> | ^~~
>
> xterm.c: In function ‘xm_setup_dnd_targets’:
> xterm.c:2284:21: warning: ‘recs’ may be used uninitialized [-Wmaybe-uninitialized]
> 2284 | recs[header.target_list_count - 1]->targets[i] = targets_sorted[i];
> | ^
> xterm.c:2112:26: note: ‘recs’ was declared here
> 2112 | xm_targets_table_rec **recs;
> | ^~~~
>
> They're bogus, right? Is it okay to silence them as follows?
Yes, those are all bogus. I installed something different to pacify
them on master.
Thanks.
Added tag(s) moreinfo.
Request was from
Lars Ingebrigtsen <larsi <at> gnus.org>
to
control <at> debbugs.gnu.org
.
(Mon, 15 Aug 2022 07:08:01 GMT)
Full text and
rfc822 format available.
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#57208
; Package
emacs
.
(Mon, 15 Aug 2022 20:35:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 57208 <at> debbugs.gnu.org (full text, mbox):
Po Lu [2022-08-15 08:52 +0800] wrote:
> Yes, those are all bogus. I installed something different to pacify
> them on master.
Thanks. Just curious: what's the advantage of using UNINIT?
When should it or shouldn't it be preferred?
--
Basil
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#57208
; Package
emacs
.
(Tue, 16 Aug 2022 02:37:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 57208 <at> debbugs.gnu.org (full text, mbox):
> Cc: 57208 <at> debbugs.gnu.org
> Date: Mon, 15 Aug 2022 23:34:19 +0300
> From: "Basil L. Contovounesios" via "Bug reports for GNU Emacs,
> the Swiss army knife of text editors" <bug-gnu-emacs <at> gnu.org>
>
> Po Lu [2022-08-15 08:52 +0800] wrote:
>
> > Yes, those are all bogus. I installed something different to pacify
> > them on master.
>
> Thanks. Just curious: what's the advantage of using UNINIT?
> When should it or shouldn't it be preferred?
It should be used when the warning is due to a compiler bug or
misfeature, and our code is fine. That's what UNINIT says: it says
that it's okay to leave this variable uninitialized.
Reply sent
to
Stefan Kangas <stefankangas <at> gmail.com>
:
You have taken responsibility.
(Tue, 23 Aug 2022 15:28:02 GMT)
Full text and
rfc822 format available.
Notification sent
to
"Basil L. Contovounesios" <contovob <at> tcd.ie>
:
bug acknowledged by developer.
(Tue, 23 Aug 2022 15:28:02 GMT)
Full text and
rfc822 format available.
Message #21 received at 57208-done <at> debbugs.gnu.org (full text, mbox):
"Basil L. Contovounesios" <contovob <at> tcd.ie> writes:
>
> Po Lu [2022-08-15 08:52 +0800] wrote:
>
>> Yes, those are all bogus. I installed something different to pacify
>> them on master.
>
> Thanks.
I'm therefore closing this bug report.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 21 Sep 2022 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 274 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.