1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

from Roger Dannenberg - Workaround for path bug. The correct fix is to remove the duplicated code.

This commit is contained in:
james.k.crook@gmail.com 2011-11-30 19:38:38 +00:00
parent 245a76610f
commit 1f208ea60d

View File

@ -1520,7 +1520,7 @@ void get_xlisp_path(char *p, long p_max)
} }
strncpy(p, paths, p_max); strncpy(p, paths, p_max);
p[p_max] = 0; p[p_max-1] = 0;
} }
#endif #endif