summaryrefslogtreecommitdiff
path: root/astro/xephem
diff options
context:
space:
mode:
authorThomas Gellekum <tg@FreeBSD.org>2001-03-08 12:44:05 +0000
committerThomas Gellekum <tg@FreeBSD.org>2001-03-08 12:44:05 +0000
commit8526c067cc3c8412db5a7fcd78f16c809b36d133 (patch)
tree38d33dd0e81369cd75360f9c989c90434db7f937 /astro/xephem
parentAdd ruby-cdb, Ruby interface to D. J. Bernstein's cdb (constant (diff)
Don't reuse possibly free()d memory.
Found by: phkmalloc
Diffstat (limited to 'astro/xephem')
-rw-r--r--astro/xephem/files/patch-saveres.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/astro/xephem/files/patch-saveres.c b/astro/xephem/files/patch-saveres.c
new file mode 100644
index 000000000000..8f7616a6e909
--- /dev/null
+++ b/astro/xephem/files/patch-saveres.c
@@ -0,0 +1,20 @@
+--- saveres.c.orig Thu Nov 30 07:01:20 2000
++++ saveres.c Sat Dec 30 16:07:54 2000
+@@ -1026,6 +1026,7 @@
+ /* try mdovride else use default */
+ FILE *ofp = fopenh (mdovride, "r");
+ char *vp = NULL;
++ char *vph;
+ char nam[MRNAM], val[MRVAL], buf[MLL];
+
+ if (ofp) {
+@@ -1043,7 +1044,8 @@
+ }
+ if (!vp)
+ vp = mydirdef;
+- mydir = XtNewString (expand_home(vp));
++ vph = expand_home(vp);
++ mydir = XtNewString (vph);
+ if (access (mydir, X_OK) < 0 && mkdir (mydir, 0744) < 0) {
+ sprintf (buf, "%s: %s", mydir, syserrstr());
+ xe_msg (buf, 1);