Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1329295 Details for
Bug 1494309
Use of aligned_alloc causes invalid free in libtcmalloc
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch aginst f26 fedpkg branch
gperftools-aligned_alloc-fix.patch (text/plain), 2.23 KB, created by
Brad Hubbard
on 2017-09-22 01:41:02 UTC
(
hide
)
Description:
Patch aginst f26 fedpkg branch
Filename:
MIME Type:
Creator:
Brad Hubbard
Created:
2017-09-22 01:41:02 UTC
Size:
2.23 KB
patch
obsolete
>diff -up gperftools-2.5.93/Makefile.am.fix gperftools-2.5.93/Makefile.am >--- gperftools-2.5.93/Makefile.am.fix 2017-09-21 14:23:39.139056358 +1000 >+++ gperftools-2.5.93/Makefile.am 2017-09-21 14:27:45.346195610 +1000 >@@ -90,6 +90,7 @@ endif MINGW > if HAVE_OBJCOPY_WEAKEN > WEAKEN = $(OBJCOPY) -W malloc -W free -W realloc -W calloc -W cfree \ > -W memalign -W posix_memalign -W valloc -W pvalloc \ >+ -W aligned_alloc \ > -W malloc_stats -W mallopt -W mallinfo -W nallocx \ > -W _Znwm -W _ZnwmRKSt9nothrow_t -W _Znam -W _ZnamRKSt9nothrow_t \ > -W _ZdlPv -W _ZdaPv \ >diff -up gperftools-2.5.93/src/libc_override_gcc_and_weak.h.fix gperftools-2.5.93/src/libc_override_gcc_and_weak.h >--- gperftools-2.5.93/src/libc_override_gcc_and_weak.h.fix 2017-09-21 14:24:23.417261243 +1000 >+++ gperftools-2.5.93/src/libc_override_gcc_and_weak.h 2017-09-21 14:26:54.216959025 +1000 >@@ -143,6 +143,7 @@ extern "C" { > void* calloc(size_t n, size_t size) __THROW ALIAS(tc_calloc); > void cfree(void* ptr) __THROW ALIAS(tc_cfree); > void* memalign(size_t align, size_t s) __THROW ALIAS(tc_memalign); >+ void* aligned_alloc(size_t align, size_t s) __THROW ALIAS(tc_memalign); > void* valloc(size_t size) __THROW ALIAS(tc_valloc); > void* pvalloc(size_t size) __THROW ALIAS(tc_pvalloc); > int posix_memalign(void** r, size_t a, size_t s) __THROW >diff -up gperftools-2.5.93/src/libc_override_redefine.h.fix gperftools-2.5.93/src/libc_override_redefine.h >--- gperftools-2.5.93/src/libc_override_redefine.h.fix 2017-09-21 14:25:15.127500516 +1000 >+++ gperftools-2.5.93/src/libc_override_redefine.h 2017-09-21 14:27:29.392121786 +1000 >@@ -71,6 +71,7 @@ extern "C" { > void* calloc(size_t n, size_t s) { return tc_calloc(n, s); } > void cfree(void* p) { tc_cfree(p); } > void* memalign(size_t a, size_t s) { return tc_memalign(a, s); } >+ void* aligned_alloc(size_t a, size_t s) { return tc_memalign(a, s); } > void* valloc(size_t s) { return tc_valloc(s); } > void* pvalloc(size_t s) { return tc_pvalloc(s); } > int posix_memalign(void** r, size_t a, size_t s) {
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 Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1494309
: 1329295