]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - fs.c
Fix underflow in various commands when using an empty file name.
[xonotic/darkplaces.git] / fs.c
diff --git a/fs.c b/fs.c
index 67d13f930eeb5dc23e583dcc4f94fd10b69f2794..817780f79dec258af9ada9984557472d41748502 100644 (file)
--- a/fs.c
+++ b/fs.c
@@ -3350,7 +3350,7 @@ void FS_DefaultExtension (char *path, const char *extension, size_t size_path)
 
        // if path doesn't have a .EXT, append extension
        // (extension should include the .)
-       src = path + strlen(path) - 1;
+       src = path + strlen(path);
 
        while (*src != '/' && src != path)
        {