Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 11th, 2012  |  syntax: None  |  size: 2.68 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. *** glibc detected *** : free(): invalid next size (fast) in C code
  2. *** glibc detected *** : free(): invalid next size (fast)
  3.        
  4. ** glibc detected *** ./bplus: free(): invalid next size (fast): 0x000000000077f1b0    ***
  5.   ======= Backtrace: =========
  6.  /lib/libc.so.6(+0x775b6)[0x7fae8e5615b6]  
  7.  /lib/libc.so.6(cfree+0x73)[0x7fae8e567e83]
  8. ./bplus[0x401acf]
  9. ./bplus[0x401caf]
  10.  /lib/libc.so.6(__libc_start_main+0xfd)[0x7fae8e508c4d]
  11. ./bplus[0x400669]
  12.  ======= Memory map: ========
  13.   00400000-00403000 r-xp 00000000 08:07 544621                            
  14.   00602000-00603000 r--p 00002000 08:07 544621                            
  15.   00603000-00604000 rw-p 00003000 08:07 544621                            
  16.   0077f000-007a0000 rw-p 00000000 00:00 0                                  [heap]
  17.   7fae88000000-7fae88021000 rw-p 00000000 00:00 0
  18.   7fae88021000-7fae8c000000 ---p 00000000 00:00 0  
  19.   7fae8e2d3000-7fae8e2e9000 r-xp 00000000 08:07 147                              /lib/libgcc_s.so.1
  20.   7fae8e2e9000-7fae8e4e8000 ---p 00016000 08:07 147                          /lib/libgcc_s.so.1
  21.   7fae8e4e8000-7fae8e4e9000 r--p 00015000 08:07 147                        /lib/libgcc_s.so.1
  22.   7fae8e4e9000-7fae8e4ea000 rw-p 00016000 08:07 147                        /lib/libgcc_s.so.1
  23.   7fae8e4ea000-7fae8e664000 r-xp 00000000 08:07 943                        /lib/libc-2.11.1.so
  24.   7fae8e664000-7fae8e863000 ---p 0017a000 08:07 943                        /lib/libc-2.11.1.so
  25.   7fae8e863000-7fae8e867000 r--p 00179000 08:07 943                        /lib/libc-2.11.1.so
  26.   7fae8e867000-7fae8e868000 rw-p 0017d000 08:07 943                        /lib/libc-2.11.1.so
  27.   7fae8e868000-7fae8e86d000 rw-p 00000000 00:00 0
  28.   7fae8e86d000-7fae8e88d000 r-xp 00000000 08:07 488                        /lib/ld-2.11.1.so
  29.   7fae8ea63000-7fae8ea66000 rw-p 00000000 00:00 0
  30.   7fae8ea88000-7fae8ea8c000 rw-p 00000000 00:00 0
  31.   7fae8ea8c000-7fae8ea8d000 r--p 0001f000 08:07 488                        /lib/ld-2.11.1.so
  32.   7fae8ea8d000-7fae8ea8e000 rw-p 00020000 08:07 488                        /lib/ld-2.11.1.so
  33.   7fae8ea8e000-7fae8ea8f000 rw-p 00000000 00:00 0
  34.   7fff8d3c9000-7fff8d3de000 rw-p 00000000 00:00 0                          [stack]
  35.   7fff8d3ff000-7fff8d400000 r-xp 00000000 00:00 0                          [vdso]
  36.   ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0                  [vsyscall]
  37.   Aborted
  38.        
  39. for (i =0 ; i < order ; i++) {  /*Stores the leaf key pointer pairs and new key pointer pairs in order form  in temp. storage*/
  40.       if (i == InsertionIndex) {
  41.            i =i+1;
  42.       }
  43.       temp_keys[i] = bplus_IndividualKeyBplus(bplusLeaf,j);
  44.       temp_pointers[i] = bplus_IndividualPointersBplus(bplusLeaf,j);
  45.       j = j+1;
  46. }