]> de.git.xonotic.org Git - xonotic/netradiant.git/commitdiff
import some improvements from garux tree
authorThomas Debesse <dev@illwieckz.net>
Sat, 12 Oct 2019 21:34:24 +0000 (23:34 +0200)
committerThomas Debesse <dev@illwieckz.net>
Sat, 12 Oct 2019 21:34:36 +0000 (23:34 +0200)
see https://github.com/Garux/netradiant-custom/commit/1a18246a1fcb08ad15da046382684f7754d6aae1

radiant/environment.cpp

index 9c0f53e47a69a3ade13f32da7fa66e492526bfab..d6be70d54a6b1eb1db87d3f368d9fc1d2ed49499 100644 (file)
@@ -224,22 +224,23 @@ const char* LINK_NAME =
 #endif
 ;
 
 #endif
 ;
 
-/// brief Returns the filename of the executable belonging to the current process, or 0 if not found.
+/// brief Returns the filename of the executable belonging to the current process, or empty string if not found.
 char const* getexename( char *buf ){
        /* Now read the symbolic link */
 char const* getexename( char *buf ){
        /* Now read the symbolic link */
-       int ret = readlink( LINK_NAME, buf, PATH_MAX );
+       const int ret = readlink( LINK_NAME, buf, PATH_MAX );
 
        if ( ret == -1 ) {
                globalOutputStream() << "getexename: falling back to argv[0]: " << makeQuoted( g_argv[0] );
 
        if ( ret == -1 ) {
                globalOutputStream() << "getexename: falling back to argv[0]: " << makeQuoted( g_argv[0] );
-               const char* path = realpath( g_argv[0], buf );
-               if ( path == 0 ) {
+               if( realpath( g_argv[0], buf ) == 0 ) {
                        /* In case of an error, leave the handling up to the caller */
                        /* In case of an error, leave the handling up to the caller */
-                       return "";
+                       *buf = '\0';
                }
        }
                }
        }
+       else {
+               /* Ensure proper NUL termination */
+               buf[ret] = 0;
+       }
 
 
-       /* Ensure proper NUL termination */
-       buf[ret] = 0;
        return buf;
 }
 
        return buf;
 }