summaryrefslogtreecommitdiffstats
path: root/src/slave/kprop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/slave/kprop.c')
-rw-r--r--src/slave/kprop.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/slave/kprop.c b/src/slave/kprop.c
index b2ea2c2b3..42bc8fbda 100644
--- a/src/slave/kprop.c
+++ b/src/slave/kprop.c
@@ -1,7 +1,7 @@
/*
* slave/kprop.c
*
- * Copyright 1990,1991 by the Massachusetts Institute of Technology.
+ * Copyright 1990,1991,2008 by the Massachusetts Institute of Technology.
* All Rights Reserved.
*
* Export of this software from the United States of America may
@@ -505,12 +505,12 @@ open_database(context, data_fn, size)
free(data_ok_fn);
exit(1);
}
- free(data_ok_fn);
if (stbuf.st_mtime > stbuf_ok.st_mtime) {
com_err(progname, 0, "'%s' more recent than '%s'.",
data_fn, data_ok_fn);
exit(1);
}
+ free(data_ok_fn);
*size = stbuf.st_size;
return(fd);
}