~james-page/ubuntu/precise/mysql-5.5/misc-fixes

« back to all changes in this revision

Viewing changes to storage/myisam/mi_dynrec.c

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-06-11 07:34:33 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120611073433-l9za2ni4ipp848y3
Tags: 5.5.24-0ubuntu0.12.04.1
* SECURITY UPDATE: Update to 5.5.24 to fix security issues (LP: #1011371)
  - http://dev.mysql.com/doc/refman/5.5/en/news-5-5-24.html

Show diffs side-by-side

added added

removed removed

Lines of Context:
117
117
{
118
118
  int ret;
119
119
  DBUG_ENTER("mi_unmap_file");
120
 
  if ((ret= my_munmap(info->s->file_map, info->s->mmaped_length)))
 
120
  if ((ret= my_munmap((void*) info->s->file_map, info->s->mmaped_length)))
121
121
    DBUG_RETURN(ret);
122
122
  info->s->file_read= mi_nommap_pread;
123
123
  info->s->file_write= mi_nommap_pwrite;