Use unit_least32_t as a better unsigned counterpart of INT32

Change-Id: I0607073c73d3b291a4d5fbfb04e9516b9bbda748
Reviewed-on: https://gerrit.libreoffice.org/22244
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Tested-by: Stephan Bergmann <sbergman@redhat.com>
This commit is contained in:
Stephan Bergmann
2016-02-09 18:25:43 +01:00
parent 5384c6a53a
commit e4e0eb0dff

View File

@@ -1,11 +1,19 @@
--- jcphuff.c
+++ jcphuff.c
@@ -255,7 +255,7 @@
@@ -14,6 +14,7 @@
* suspension.
*/
+#include <stdint.h>
#define JPEG_INTERNALS
#include "jinclude.h"
#include "jpeglib.h"
@@ -255,7 +256,7 @@
if (c == 0xFF) { /* need to stuff a zero byte? */
emit_byte(entropy, 0);
}
- put_buffer <<= 8;
+ put_buffer = (unsigned) put_buffer << 8;
+ put_buffer = (uint_least32_t) put_buffer << 8;
put_bits -= 8;
}