This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Hurd".
The branch, master has been updated
via 64e556741e6a0f33c367b4e1c85086ba16a98262 (commit)
via e1776b421bae1ca58bf2b466a6ad4c386b54fbc7 (commit)
via f2668ff2478445a2bf39861767c8b40bf3a98896 (commit)
via 80108fada282c6389ef62a1692d758301a6d734a (commit)
via ac4e85cc00b0dae9ee4e4b7c05c13de02001b6c1 (commit)
via 29a405538ed2d0254451ab840ebabd0353de1cf0 (commit)
via 4ddc7109866790ce62833713e0c0c1253399b4dc (commit)
via a7d0b5e4f0b39d3d9641cf41b5476e92850629d3 (commit)
via a912cfc83e8a40d746826bd91da3e4d536e408b5 (commit)
via 047ac6ac7ffd9f9408c5368757917b368aa952b9 (commit)
via 32ffa6649c13f5c9a5c4cd1f315513d723780365 (commit)
via ebd721e7001a444386c781992fd254dcad87b79e (commit)
from a35e1f88f508babdfeec0e270e206192c98ed588 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 64e556741e6a0f33c367b4e1c85086ba16a98262
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:09:01 2025 +0100
lwip: fix unsued result warning
../../lwip/port/netif/hurdtunif.c: In function 'hurdtunif_device_init':
../../lwip/port/netif/hurdtunif.c:208:5: warning: ignoring return value
of 'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
208 | asprintf (&tunif->comm.devname, "/dev/%s", base_name);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message-ID: <[email protected]>
commit e1776b421bae1ca58bf2b466a6ad4c386b54fbc7
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:09:00 2025 +0100
sutils/fstab.c: fix unused result warning
../../sutils/fstab.c: In function 'fstypes_get':
../../sutils/fstab.c:122:7: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
122 | asprintf (&program, fmt, name);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message-ID: <[email protected]>
commit f2668ff2478445a2bf39861767c8b40bf3a98896
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:59 2025 +0100
nfsd: fix cast to integer of different size
../../nfsd/loop.c: In function 'server_loop':
../../nfsd/loop.c:41:12: warning: cast from pointer to integer of
different size [-Wpointer-to-int-cast]
../../nfsd/main.c: In function 'create_server_thread':
../../nfsd/main.c:47:54: warning: cast to pointer from integer of
different size [-Wint-to-pointer-cast]
Message-ID: <[email protected]>
commit 80108fada282c6389ef62a1692d758301a6d734a
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:58 2025 +0100
console-client: fix cast to integer of different size
../../console-client/xkb/xkbtimer.c: In function 'key_enable':
../../console-client/xkb/xkbtimer.c:84:13: warning: cast from pointer
to integer of different size [
-Wpointer-to-int-cast]
../../console-client/xkb/xkbtimer.c: In function 'key_timing':
../../console-client/xkb/xkbtimer.c:105:21: warning: cast from pointer
to integer of different size
[-Wpointer-to-int-cast]
../../console-client/xkb/xkbtimer.c: In function 'xkb_key_released':
../../console-client/xkb/xkbtimer.c:161:53: warning: cast to pointer
from integer of different size
[-Wint-to-pointer-cast]
../../console-client/xkb/xkbtimer.c: In function 'xkb_key_pressed':
../../console-client/xkb/xkbtimer.c:175:48: warning: cast to pointer
from integer of different size
[-Wint-to-pointer-cast]
Message-ID: <[email protected]>
commit ac4e85cc00b0dae9ee4e4b7c05c13de02001b6c1
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:57 2025 +0100
nfs: fix hypothetical use after free
../../nfs/ops.c: In function 'fetch_directory':
../../nfs/ops.c:1962:35: warning: pointer 'buf' may be used after
'realloc' [-Wuse-after-free]
1962 | bp = newbuf + (bp - buf);
| ~~~~^~~~~~
../../nfs/ops.c:1959:24: note: call to 'realloc' here
1959 | newbuf = realloc (buf, bufmalloced *= 2);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Message-ID: <[email protected]>
commit 29a405538ed2d0254451ab840ebabd0353de1cf0
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:56 2025 +0100
nfs: fix potential uninitialized access warning
../../nfs/ops.c: In function 'netfs_get_dirents':
../../nfs/ops.c:2019:15: warning: 'our_bufsiz' may be used
uninitialized [-Wmaybe-uninitialized]
2019 | if (!bufsiz || bufsiz > our_bufsiz)
| ~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
../../nfs/ops.c:2007:10: note: 'our_bufsiz' was declared here
2007 | size_t our_bufsiz, allocsize;
| ^~~~~~~~~~
Message-ID: <[email protected]>
commit 4ddc7109866790ce62833713e0c0c1253399b4dc
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:55 2025 +0100
init: fix unused result warnings
../../init/init.c: In function 'sigchld_handler':
../../init/init.c:91:13: warning: ignoring return value of 'asprintf'
declared with attribute 'warn_unused_result' [-Wunused-result]
../../init/init.c:94:13: warning: ignoring return value of 'asprintf'
declared with attribute 'warn_unused_result' [-Wunused-result]
../../init/init.c:99:13: warning: ignoring return value of 'asprintf'
declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
commit a7d0b5e4f0b39d3d9641cf41b5476e92850629d3
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:54 2025 +0100
startup: fix unused resuls warnings
../../startup/startup.c: In function 'process_signal':
../../startup/startup.c:1251:17: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../startup/startup.c:1254:17: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../startup/startup.c:1259:17: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
commit a912cfc83e8a40d746826bd91da3e4d536e408b5
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:53 2025 +0100
sutils/smp.c: fix unused result warning
../../sutils/smp.c: In function 'smp':
../../sutils/smp.c:64:3: warning: ignoring return value of 'setuid'
declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
commit 047ac6ac7ffd9f9408c5368757917b368aa952b9
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:52 2025 +0100
utils/gcore.c: fix unused result warning
../../utils/gcore.c: In function 'main':
../../utils/gcore.c:78:11: warning: ignoring return value of 'asprintf'
declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
commit 32ffa6649c13f5c9a5c4cd1f315513d723780365
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:51 2025 +0100
utils/mount.c: fix unused result warnings
../../utils/mount.c: In function 'do_query':
../../utils/mount.c:589:15: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
commit ebd721e7001a444386c781992fd254dcad87b79e
Author: Diego Nieto Cid <[email protected]>
Date: Mon Oct 6 00:08:50 2025 +0100
utils/rpctrace: fix unused result warnigns
../../utils/rpctrace.c: In function 'new_send_wrapper':
../../utils/rpctrace.c:359:3: warning: ignoring return value of
'asprintf' declared with attribute
'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c: In function 'trace_and_forward':
../../utils/rpctrace.c:1256:19: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c:1260:19: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c: In function 'wrap_new_thread':
../../utils/rpctrace.c:1061:3: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c: In function 'wrap_new_task':
../../utils/rpctrace.c:1108:3: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c:1111:3: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c: In function 'wrap_all_threads':
../../utils/rpctrace.c:1008:11: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
../../utils/rpctrace.c: In function 'traced_spawn':
../../utils/rpctrace.c:1678:3: warning: ignoring return value of
'asprintf' declared with attribute 'warn_unused_result' [-Wunused-result]
Message-ID: <[email protected]>
-----------------------------------------------------------------------
Summary of changes:
console-client/xkb/xkbtimer.c | 8 ++++----
init/init.c | 27 ++++++++++++++++++---------
lwip/port/netif/hurdtunif.c | 13 +++++++++++--
nfs/ops.c | 5 +++--
nfsd/loop.c | 2 +-
nfsd/main.c | 2 +-
startup/startup.c | 21 +++++++++++++--------
sutils/fstab.c | 6 +++++-
sutils/smp.c | 4 +++-
utils/gcore.c | 7 +++++--
utils/mount.c | 7 +++++--
utils/rpctrace.c | 39 ++++++++++++++++++++++++++-------------
12 files changed, 95 insertions(+), 46 deletions(-)
hooks/post-receive
--
Hurd