~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/hp_rnext.c

  • Committer: Mats Kindahl
  • Date: 2008-08-07 06:24:22 UTC
  • mfrom: (265 drizzle)
  • mto: (264.1.19 codestyle)
  • mto: This revision was merged to the branch mainline in revision 266.
  • Revision ID: mats@mysql.com-20080807062422-20kyv6ssp4grfm0s
Manual merge of lp:drizzle into ~mkindahl/remove-mem-casts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
      my_errno=HA_ERR_END_OF_FILE;
109
109
    return(my_errno);
110
110
  }
111
 
  memcpy(record,pos,(size_t) share->reclength);
 
111
  hp_extract_record(share, record, pos);
112
112
  info->update=HA_STATE_AKTIV | HA_STATE_NEXT_FOUND;
113
113
  return(0);
114
114
}