This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
[PATCH] Fix to stop a fall-through in a switch statement
- From: Jordi Sanfeliu <jordi at fibranet dot cat>
- To: newlib at sourceware dot org
- Date: Fri, 13 Jul 2018 12:15:46 +0200
- Subject: [PATCH] Fix to stop a fall-through in a switch statement
- Dkim-filter: OpenDKIM Filter v2.11.0 mail.fibranet.cat w6DAFkmG010571
Hello,
The following fixes a fall-through that prevented from reading the next
entry in the UTMP file and terminated the program with an abort().
diff --git a/newlib/libc/unix/getut.c b/newlib/libc/unix/getut.c
index c3a9b62..89ed739 100644
--- a/newlib/libc/unix/getut.c
+++ b/newlib/libc/unix/getut.c
@@ -65,6 +65,7 @@ getutid (struct utmp *id)
case DEAD_PROCESS:
if (id->ut_id == utmp_data.ut_id)
return &utmp_data;
+ break;
default:
abort ();
}
Thanks.
--
Jordi Sanfeliu
FIBRANET Network Services Provider
https://www.fibranet.cat