diff options
author | unknown <monty@narttu.mysql.fi> | 2003-09-24 14:33:23 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-09-24 14:33:23 +0300 |
commit | 931633bbbb2b0d1336cccd3923cbe98b533426a3 (patch) | |
tree | 2dc31c2cc9196308a765bec6e54cfd85a1749281 /myisam/myisamdef.h | |
parent | 792aa09ee17b4ca88c92f297498237e46a4c7cf0 (diff) | |
download | mariadb-git-931633bbbb2b0d1336cccd3923cbe98b533426a3.tar.gz |
Correct fix for buffer overruns for compressed blobs.
(Bugs #770, #1304 and maybe #1295)
Diffstat (limited to 'myisam/myisamdef.h')
-rw-r--r-- | myisam/myisamdef.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/myisamdef.h b/myisam/myisamdef.h index 7631b245b9b..e1df1d73191 100644 --- a/myisam/myisamdef.h +++ b/myisam/myisamdef.h @@ -213,7 +213,7 @@ typedef uint mi_bit_type; typedef struct st_mi_bit_buff { /* Used for packing of record */ mi_bit_type current_byte; uint bits; - uchar *pos,*end,*blob_pos; + uchar *pos,*end,*blob_pos,*blob_end; uint error; } MI_BIT_BUFF; |