1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-14 23:46:10 +00:00
freebsd-ports/sysutils/mkisofs-devel/files/patch-ac
Joerg Wunsch 3ee0faa496 After being able to reproduce and fix the coredumps i've got with this
version, now finally upgrade to mkisofs 1.10.

PR:		ports/3143
Submitted by:	partially by Brian Handy <handy@lambic.space.lockheed.com>
1997-04-28 11:30:52 +00:00

31 lines
800 B
Plaintext

--- name.c.orig Sat Mar 15 04:02:46 1997
+++ name.c Mon Apr 28 11:50:47 1997
@@ -57,6 +57,7 @@
const char * pnt;
int priority = 32767;
char * result;
+ char * copy;
int seen_dot = 0;
int seen_semic = 0;
int tildes = 0;
@@ -104,12 +105,17 @@
last_dot = strrchr (pnt,'.');
if( (last_dot != NULL)
&& ( (last_dot[1] == '~')
- || (last_dot[1] == '\0')
|| (last_dot[1] == '\0')) )
{
+ /*
+ * We gotta copy the string first, to work around its constness.
+ */
+ copy = alloca (strlen(name) + 1);
+ memcpy (copy, name, strlen(name) + 1);
+ pnt = copy;
+ last_dot = strrchr (pnt,'.');
*last_dot = '\0';
last_dot = strrchr (pnt,'.');
- *last_dot = '.';
}
while(*pnt)