Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 14 Feb 2023 06:04:25 GMT
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 77ed2a8a5a09 - main - games/{gtk,net}radiant: fix getting file length on Unix-like systems
Message-ID:  <202302140604.31E64PSQ029032@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by danfe:

URL: https://cgit.FreeBSD.org/ports/commit/?id=77ed2a8a5a0908bc06e9258dda820bf656eb27a0

commit 77ed2a8a5a0908bc06e9258dda820bf656eb27a0
Author:     Alexey Dokuchaev <danfe@FreeBSD.org>
AuthorDate: 2023-02-14 05:59:28 +0000
Commit:     Alexey Dokuchaev <danfe@FreeBSD.org>
CommitDate: 2023-02-14 05:59:28 +0000

    games/{gtk,net}radiant: fix getting file length on Unix-like systems
    
    Decloak Q_filelength() which takes a pointer to FILE, not an integer
    file descriptor, and optimize away superfluous call thereof.
    
    Reported by:    pkg-fallout (clang 15)
---
 .../files/patch-tools_quake3_q3data_md3lib.c       | 24 ++++++++++++++++++++++
 .../files/patch-tools_quake3_q3data_md3lib.c       | 24 ++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c b/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c
new file mode 100644
index 000000000000..bc91176a3ebe
--- /dev/null
+++ b/games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c
@@ -0,0 +1,24 @@
+--- tools/quake3/q3data/md3lib.c.orig	2006-02-10 22:01:20 UTC
++++ tools/quake3/q3data/md3lib.c
+@@ -25,10 +25,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+ #endif
+ #include "md3lib.h"
+ 
+-#if defined (__linux__) || defined (__APPLE__)
+-#define filelength Q_filelength
+-#endif
+-
+ /*
+ ** MD3_ComputeTagFromTri
+ */
+@@ -149,8 +145,8 @@ void MD3_Dump( const char *filename )
+ 		Error( "Unable to open '%s'\n", filename );
+ 	}
+ 
+-	fileSize = filelength( fileno( fp ) );
+-	_buffer = malloc( filelength( fileno( fp ) ) );
++	fileSize = Q_filelength( fp );
++	_buffer = malloc( fileSize );
+ 	fread( _buffer, fileSize, 1, fp );
+ 	fclose( fp );
+ 
diff --git a/games/netradiant/files/patch-tools_quake3_q3data_md3lib.c b/games/netradiant/files/patch-tools_quake3_q3data_md3lib.c
new file mode 100644
index 000000000000..78fead3efc19
--- /dev/null
+++ b/games/netradiant/files/patch-tools_quake3_q3data_md3lib.c
@@ -0,0 +1,24 @@
+--- tools/quake3/q3data/md3lib.c.orig	2015-06-21 12:05:40 UTC
++++ tools/quake3/q3data/md3lib.c
+@@ -25,10 +25,6 @@
+ #endif
+ #include "md3lib.h"
+ 
+-#if defined ( __linux__ ) || defined ( __APPLE__ )
+-#define filelength Q_filelength
+-#endif
+-
+ /*
+ ** MD3_ComputeTagFromTri
+ */
+@@ -149,8 +145,8 @@ void MD3_Dump( const char *filename ){
+ 		Error( "Unable to open '%s'\n", filename );
+ 	}
+ 
+-	fileSize = filelength( fileno( fp ) );
+-	_buffer = malloc( filelength( fileno( fp ) ) );
++	fileSize = Q_filelength( fp );
++	_buffer = malloc( fileSize );
+ 	fread( _buffer, fileSize, 1, fp );
+ 	fclose( fp );
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202302140604.31E64PSQ029032>