• Gleb Shchepa's avatar
    backport from 6.0 · 790edf00
    Gleb Shchepa authored
          
    Bug#35658 (An empty binary value leads to mysqld crash)
            
    Before this fix, the following token
      b''
    caused the parser to crash when reading the binary value from the empty string.
    The crash was caused by:
      ptr+= max_length - 1;
    because max_length is unsigned and was 0, causing an overflow.
            
    With this fix, an empty binary literal b'' is parsed as a binary value 0,
    in Item_bin_string.
    790edf00
varbinary.result 2.76 KB