This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/12207] New: malloc does not compile with MALLOC_DEBUG flag


http://sourceware.org/bugzilla/show_bug.cgi?id=12207

           Summary: malloc does not compile with MALLOC_DEBUG flag
           Product: glibc
           Version: 2.12
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: libc
        AssignedTo: drepper.fsp@gmail.com
        ReportedBy: aksenov@protei.ru


The erros is:
> malloc.c: In function âdo_check_malloc_stateâ:
> malloc.c:2834:11: error: âstruct malloc_stateâ has no member named âfastbinsâ

That's because do_check_malloc_state still use
  av->fastbins[i];
instead of
  fastbin(av, i);

-- 
Configure bugmail: http://sourceware.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]