mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
cee57053d3
and getpwuid() fails.
19 lines
461 B
Plaintext
19 lines
461 B
Plaintext
--- 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 */
|