~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/page/page0page.cc

  • Committer: Monty Taylor
  • Date: 2010-12-26 03:15:44 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101226031544-1cf3raipu53fnmyj
Through page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2336
2336
        /* The following buffer is used to check that the
2337
2337
        records in the page record heap do not overlap */
2338
2338
 
2339
 
        buf = mem_heap_zalloc(heap, UNIV_PAGE_SIZE);
 
2339
        void *buf_ptr= mem_heap_zalloc(heap, UNIV_PAGE_SIZE);
 
2340
        buf = static_cast<byte *>(buf_ptr);
2340
2341
 
2341
2342
        /* Check first that the record heap and the directory do not
2342
2343
        overlap. */