Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/libexec/ld.elf_so Pull up following revision(s) (requeste...
details: https://anonhg.NetBSD.org/src/rev/e1eba4f076e1
branches: netbsd-6
changeset: 776952:e1eba4f076e1
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Thu Apr 16 09:35:54 2015 +0000
description:
Pull up following revision(s) (requested by joerg in ticket #1288):
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 3bb4e84d6c9e -r e1eba4f076e1 libexec/ld.elf_so/rtld.c
--- a/libexec/ld.elf_so/rtld.c Thu Apr 16 09:34:04 2015 +0000
+++ b/libexec/ld.elf_so/rtld.c Thu Apr 16 09:35:54 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: rtld.c,v 1.155.2.3 2015/01/25 10:22:59 martin Exp $ */
+/* $NetBSD: rtld.c,v 1.155.2.4 2015/04/16 09:35:54 msaitoh Exp $ */
/*
* Copyright 1996 John D. Polstra.
@@ -40,7 +40,7 @@
#include <sys/cdefs.h>
#ifndef lint
-__RCSID("$NetBSD: rtld.c,v 1.155.2.3 2015/01/25 10:22:59 martin Exp $");
+__RCSID("$NetBSD: rtld.c,v 1.155.2.4 2015/04/16 09:35:54 msaitoh Exp $");
#endif /* not lint */
#include <sys/param.h>
@@ -1219,7 +1219,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