diff options
Diffstat (limited to 'math/calc/files/patch-lib_calc.c')
-rw-r--r-- | math/calc/files/patch-lib_calc.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/math/calc/files/patch-lib_calc.c b/math/calc/files/patch-lib_calc.c new file mode 100644 index 00000000000..241bead7693 --- /dev/null +++ b/math/calc/files/patch-lib_calc.c @@ -0,0 +1,18 @@ +--- lib_calc.c.orig Mon Feb 7 22:08:08 2000 ++++ lib_calc.c Mon Feb 7 22:10:42 2000 +@@ -407,9 +407,13 @@ + if (ent == NULL) { + /* just assume . is home if all else fails */ + home = "."; ++ } else { ++ home = (char *)malloc(strlen(ent->pw_dir)+1); ++ if (home == NULL) ++ home = "."; ++ else ++ strcpy(home, ent->pw_dir); + } +- home = (char *)malloc(strlen(ent->pw_dir)+1); +- strcpy(home, ent->pw_dir); + } + + /* determine the $PAGER value */ |