The Samba-Bugzilla – Attachment 8333 Details for
Bug 9455
munmap called for an address location not mapped by samba
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
git-am fix for 3.5.x
0001-Fix-bug-9455-munmap-called-for-an-address-location-n.patch (text/plain), 1.06 KB, created by
Jeremy Allison
on 2012-12-10 18:59:56 UTC
(
hide
)
Description:
git-am fix for 3.5.x
Filename:
MIME Type:
Creator:
Jeremy Allison
Created:
2012-12-10 18:59:56 UTC
Size:
1.06 KB
patch
obsolete
>From 7fb5158edabf1ac2a95faf8f70b8f7ffb046b2b0 Mon Sep 17 00:00:00 2001 >From: Jeremy Allison <jra@samba.org> >Date: Mon, 10 Dec 2012 10:40:12 -0800 >Subject: [PATCH] Fix bug #9455 munmap called for an address location not > mapped by samba. > >Signed-off-by: Jeremy Allison <jra@samba.org> >--- > source3/lib/util_unistr.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > >diff --git a/source3/lib/util_unistr.c b/source3/lib/util_unistr.c >index f53ef94..e8483d3 100644 >--- a/source3/lib/util_unistr.c >+++ b/source3/lib/util_unistr.c >@@ -45,6 +45,7 @@ void gfree_case_tables(void) > unmap_file(upcase_table, 0x20000); > else > SAFE_FREE(upcase_table); >+ upcase_table = NULL; > } > > if ( lowcase_table ) { >@@ -52,6 +53,7 @@ void gfree_case_tables(void) > unmap_file(lowcase_table, 0x20000); > else > SAFE_FREE(lowcase_table); >+ lowcase_table = NULL; > } > > if ( valid_table ) { >@@ -59,6 +61,7 @@ void gfree_case_tables(void) > unmap_file(valid_table, 0x10000); > else > SAFE_FREE(valid_table); >+ valid_table = NULL; > } > initialized = false; > } >-- >1.7.7.3 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Flags:
vl
:
review+
Actions:
View
Attachments on
bug 9455
:
8272
|
8306
| 8333