You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-roguelike/moria/files/5.5.2-warnings.patch

13 lines
386 B

diff -ru umoria.orig/unix/unix.c umoria/unix/unix.c
--- umoria.orig/unix/unix.c 2014-11-01 02:45:07.375535783 -0400
+++ umoria/unix/unix.c 2014-11-01 02:45:58.575820065 -0400
@@ -315,7 +315,7 @@
user[0] = '\0';
file++;
- while (*file != '/' && i < sizeof(user))
+ while (*file != '/' && i < sizeof(user) - 1)
user[i++] = *file++;
user[i] = '\0';
if (i == 0)