chiark
/
gitweb
/
~mdw
/
fwd
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Call @xfree@ rather than @free@.
[fwd]
/
exec.c
diff --git
a/exec.c
b/exec.c
index 28c9cd8df43d83d8c2a06070701b15b2a1df0c95..1f0102bedb18a0b1ff57d5ed434ecea18b8edc1e 100644
(file)
--- a/
exec.c
+++ b/
exec.c
@@
-1,6
+1,6
@@
/* -*-c-*-
*
/* -*-c-*-
*
- * $Id: exec.c,v 1.
5 2002/01/13 14:49:03
mdw Exp $
+ * $Id: exec.c,v 1.
6 2002/02/22 23:43:32
mdw Exp $
*
* Source and target for executable programs
*
*
* Source and target for executable programs
*
@@
-29,6
+29,9
@@
/*----- Revision history --------------------------------------------------*
*
* $Log: exec.c,v $
/*----- Revision history --------------------------------------------------*
*
* $Log: exec.c,v $
+ * Revision 1.6 2002/02/22 23:43:32 mdw
+ * Call @xfree@ rather than @free@.
+ *
* Revision 1.5 2002/01/13 14:49:03 mdw
* Track @lbuf@ changes in mLib.
*
* Revision 1.5 2002/01/13 14:49:03 mdw
* Track @lbuf@ changes in mLib.
*
@@
-474,9
+477,9
@@
static void xenv_destroy(xenv *xe)
while (xe) {
xenv *xxe = xe;
xe = xe->next;
while (xe) {
xenv *xxe = xe;
xe = xe->next;
- free(xxe->name);
+
x
free(xxe->name);
if (xxe->value)
if (xxe->value)
- free(xxe->value);
+
x
free(xxe->value);
DESTROY(xxe);
}
}
DESTROY(xxe);
}
}
@@
-497,7
+500,7
@@
static void x_tidy(xargs *xa, xopts *xo)
{
xa->ref--;
if (!xa->ref)
{
xa->ref--;
if (!xa->ref)
- free(xa);
+
x
free(xa);
xo->ref--;
if (!xo->ref) {
xo->ref--;
if (!xo->ref) {
@@
-703,7
+706,7
@@
static void xept_destroy(xept *xe)
else
xept_list = xe->next;
else
xept_list = xe->next;
- free(xe->desc);
+
x
free(xe->desc);
if (xe->f)
xe->f->ops->close(xe->f);
x_tidy(xe->xa, xe->xo);
if (xe->f)
xe->f->ops->close(xe->f);
x_tidy(xe->xa, xe->xo);
@@
-1115,7
+1118,7
@@
tidy:
static void xsource_destroy(source *s)
{
xsource *xs = (xsource *)s;
static void xsource_destroy(source *s)
{
xsource *xs = (xsource *)s;
- free(xs->s.desc);
+
x
free(xs->s.desc);
exec_destroy(&xs->x);
DESTROY(xs);
}
exec_destroy(&xs->x);
DESTROY(xs);
}
@@
-1169,7
+1172,7
@@
static endpt *xtarget_create(target *t, const char *desc)
static void xtarget_destroy(target *t)
{
xtarget *xt = (xtarget *)t;
static void xtarget_destroy(target *t)
{
xtarget *xt = (xtarget *)t;
- free(xt->t.desc);
+
x
free(xt->t.desc);
exec_destroy(&xt->x);
DESTROY(xt);
}
exec_destroy(&xt->x);
DESTROY(xt);
}