diff options
-rw-r--r-- | winsup/cygwin/ChangeLog | 4 | ||||
-rw-r--r-- | winsup/cygwin/net.cc | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog index d664f1c2d..a7c6e409f 100644 --- a/winsup/cygwin/ChangeLog +++ b/winsup/cygwin/ChangeLog @@ -6,6 +6,10 @@ 2005-03-09 Christopher Faylor <cgf@timesys.com> + * net.cc (dup_ent): Revert previous stupid change. + +2005-03-09 Christopher Faylor <cgf@timesys.com> + * net.cc (dup_ent): Avoid dereferencing a null pointer in a debug_printf. 2005-03-09 Christopher Faylor <cgf@timesys.com> diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index ed52807d6..3fee9eb91 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -389,7 +389,7 @@ dup_ent (void *old, void *src0, struct_type type) if (old) { debug_printf ("freeing old %sent structure \"%s\" %p\n", entnames[type], - old ? ((unionent *) old)->name : "<null!>", old); + ((unionent *) old)->name, old); free (old); } |