Fix typo in free_link_map(); noticed by Mike Grupenhoff.

This commit is contained in:
pk 1997-06-30 20:49:40 +00:00
parent ef45808de9
commit 7a27a9dd43
2 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtld.c,v 1.49 1997/06/26 20:52:06 pk Exp $ */
/* $NetBSD: rtld.c,v 1.50 1997/06/30 20:49:40 pk Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@ -583,7 +583,7 @@ free_link_map(smp)
free(smp->som_spd);
if (smp->som_path != NULL)
free(smp);
free(smp->som_path);
free(smp);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtld.c,v 1.49 1997/06/26 20:52:06 pk Exp $ */
/* $NetBSD: rtld.c,v 1.50 1997/06/30 20:49:40 pk Exp $ */
/*
* Copyright (c) 1993 Paul Kranenburg
* All rights reserved.
@ -583,7 +583,7 @@ free_link_map(smp)
free(smp->som_spd);
if (smp->som_path != NULL)
free(smp);
free(smp->som_path);
free(smp);
}