summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTobias Mueller <muelli@cryptobitch.de>2017-11-10 18:51:21 +0100
committerBastien Nocera <hadess@hadess.net>2017-12-04 17:27:30 +0100
commitc1fd9f5d6592c0183c54efc806b3ca6871e1f496 (patch)
tree0eafea4f99403caea9e5de13a257ecb817c04082 /docs
parentced897e6c5d642341f49cf45f55e7524e04fa122 (diff)
downloadgdk-pixbuf-c1fd9f5d6592c0183c54efc806b3ca6871e1f496.tar.gz
gif: Initialise code_last_byte to not cause undefined behaviour
Currently, code_last_byte is set only after it has been used, i.e. context->block_buf[0] = context->block_buf[context->code_last_byte - 2]; comes before anything has touched context->code_last_byte yet. Except for the initialisation. context->code_last_byte is set a few lines later, though. And nowhere else, except for the initialisation which sets it to 0. That will inevitably lead to context->block_buf[-2] which is undefined behaviour. We hence set the code_last_byte to 2 in order to not make that array index invalid. https://bugzilla.gnome.org/show_bug.cgi?id=778584
Diffstat (limited to 'docs')
0 files changed, 0 insertions, 0 deletions