diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2023-02-14 05:59:28 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2023-02-14 05:59:28 +0000 |
commit | 77ed2a8a5a0908bc06e9258dda820bf656eb27a0 (patch) | |
tree | d812ae50c7eb8bf3613c73fc2ffffe371be7a67b | |
parent | devel/py-grpcio-tools: update to 1.52.0. (diff) |
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)
-rw-r--r-- | games/gtkradiant/files/patch-tools_quake3_q3data_md3lib.c | 24 | ||||
-rw-r--r-- | games/netradiant/files/patch-tools_quake3_q3data_md3lib.c | 24 |
2 files changed, 48 insertions, 0 deletions
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 ); + |