This can be caused by null charactersbytes in your bash history. Removing lines with null characters may resolve the issue. You can check for them using grep's Perl-regexp mode:
grep -Pa '\x00' ~/.bash_history
This post has suggestions for non-unix systems.
 
                