summaryrefslogtreecommitdiff
path: root/RISCOS
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-12-15 22:12:47 +0000
committerTim Peters <tim.peters@gmail.com>2001-12-15 22:12:47 +0000
commit1422e9dc60bd795b0bf8d8877087ce1eb6ad6942 (patch)
tree161121ac48bd430596a23e4f170617c31b3a05fd /RISCOS
parentc57772870b3e3399a6d8d03a75113987fbfab4b0 (diff)
downloadcpython-git-1422e9dc60bd795b0bf8d8877087ce1eb6ad6942.tar.gz
SF patch 493739 2 Bugfixes for 2.2c1 (RISC OS specific), from
Dietmar Schwertberger. Bugfix candidate. """ RISCOS/Modules/getpath_riscos.c: Include trailing '\0' when using strncpy [copy strlen(...)+1 characters]. Lib/plat-riscos/riscospath.py: Use riscosmodule.expand for os.path.abspath. [fixes problems with site.py where abspath("<Python$Dir>") returned join(os.getcwd(), "<Python$Dir>") as e.g. "SCSI::SCSI4.$.<Python$Dir>" because "<Python$Dir>" wasn't recognised as an absolute path.] """
Diffstat (limited to 'RISCOS')
-rw-r--r--RISCOS/Modules/getpath_riscos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/RISCOS/Modules/getpath_riscos.c b/RISCOS/Modules/getpath_riscos.c
index 5ac8b727e2..ce978c6c46 100644
--- a/RISCOS/Modules/getpath_riscos.c
+++ b/RISCOS/Modules/getpath_riscos.c
@@ -11,7 +11,7 @@ calculate_path()
int pathlen = strlen(pypath);
module_search_path = malloc(pathlen + 1);
if (module_search_path)
- strncpy(module_search_path, pypath, pathlen);
+ strncpy(module_search_path, pypath, pathlen + 1);
else {
fprintf(stderr,
"Not enough memory for dynamic PYTHONPATH.\n"