freebsd-ports/graphics/urt/files/patch-lib-rle_open_f.c
Pav Lucistnik c42f3b8f1c - Fix for gif2rle (from BRLCAD)
- misc. fixes from the SGI port
- some other warning cleanups and remove a check that was not serving any purpose

PR:		ports/118344
Submitted by:	Pedro F. Giffuni <giffunip@tutopia.com>
2007-12-15 19:53:24 +00:00

43 lines
1.3 KiB
C

--- lib/rle_open_f.c.orig Thu May 13 16:28:51 1993
+++ lib/rle_open_f.c Thu Nov 29 23:38:49 2007
@@ -56,6 +56,7 @@
CONST_DECL char *err_str;
register char *cp;
char *combuf;
+ size_t combuf_size;
#ifdef STDIO_NEEDS_BINARY
char mode_string[32]; /* Should be enough. */
@@ -150,7 +151,8 @@
else if ( cp > file_name && *cp == '.' && *(cp + 1) == 'Z' )
{
int thepid; /* PID from my_popen. */
- combuf = (char *)malloc( 20 + strlen( file_name ) );
+ combuf_size = 20 + strlen( file_name );
+ combuf = (char *)malloc( combuf_size );
if ( combuf == NULL )
{
err_str = "%s: out of memory opening (compressed) %s for %s";
@@ -158,11 +160,11 @@
}
if ( *mode == 'w' )
- sprintf( combuf, "compress > %s", file_name );
+ snprintf( combuf, combuf_size, "compress > %s", file_name );
else if ( *mode == 'a' )
- sprintf( combuf, "compress >> %s", file_name );
+ snprintf( combuf, combuf_size, "compress >> %s", file_name );
else
- sprintf( combuf, "compress -d < %s", file_name );
+ snprintf( combuf, combuf_size, "compress -d < %s", file_name );
fp = my_popen( combuf, mode, &thepid );
free( combuf );
@@ -256,7 +258,6 @@
int pipefd[2];
int i;
char *argv[4];
- extern int errno;
/* Check args. */
if ( *mode != 'r' && *mode != 'w' )