mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
Merge bk-internal:/home/bk/mysql-5.1-new
into mysql.com:/usr/local/mysql/mysql-5.1-relmerge
This commit is contained in:
commit
6971691dc5
1 changed files with 2 additions and 2 deletions
|
@ -153,12 +153,12 @@ int packfrm(const void *data, uint len,
|
|||
if (!(blob= (struct frm_blob_struct*) my_malloc(blob_len,MYF(MY_WME))))
|
||||
goto err;
|
||||
|
||||
// Store compressed blob in machine independent format
|
||||
/* Store compressed blob in machine independent format */
|
||||
int4store((char*)(&blob->head.ver), 1);
|
||||
int4store((char*)(&blob->head.orglen), comp_len);
|
||||
int4store((char*)(&blob->head.complen), org_len);
|
||||
|
||||
// Copy frm data into blob, already in machine independent format
|
||||
/* Copy frm data into blob, already in machine independent format */
|
||||
memcpy(blob->data, data, org_len);
|
||||
|
||||
*pack_data= blob;
|
||||
|
|
Loading…
Add table
Reference in a new issue