Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-7]: src/libexec/ld.elf_so Pull up following revision(s) (requeste...
details: https://anonhg.NetBSD.org/src/rev/181b72e8a4ac
branches: netbsd-7
changeset: 799176:181b72e8a4ac
user: snj <snj%NetBSD.org@localhost>
date: Mon Apr 06 02:01:39 2015 +0000
description:
Pull up following revision(s) (requested by joerg in ticket #665):
libexec/ld.elf_so/rtld.c: revision 1.176
lib/49813: Release mutex on error.
diffstat:
libexec/ld.elf_so/rtld.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (27 lines):
diff -r 84ac165203e7 -r 181b72e8a4ac libexec/ld.elf_so/rtld.c
--- a/libexec/ld.elf_so/rtld.c Mon Apr 06 01:59:36 2015 +0000
+++ b/libexec/ld.elf_so/rtld.c Mon Apr 06 02:01:39 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld.c,v 1.173.4.1 2015/03/09 07:56:43 snj Exp $ */
+/* $NetBSD: rtld.c,v 1.173.4.2 2015/04/06 02:01:39 snj Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: rtld.c,v 1.173.4.1 2015/03/09 07:56:43 snj Exp $");
+__RCSID("$NetBSD: rtld.c,v 1.173.4.2 2015/04/06 02:01:39 snj Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -1258,7 +1258,7 @@
obj = _rtld_obj_from_addr(addr);
if (obj == NULL) {
_rtld_error("No shared object contains address");
- lookup_mutex_enter();
+ lookup_mutex_exit();
return 0;
}
info->dli_fname = obj->path;
Home |
Main Index |
Thread Index |
Old Index