OLD | NEW |
1 Index: jdmarker.c | 1 Index: jdmarker.c |
2 =================================================================== | 2 =================================================================== |
3 --- jdmarker.c (revision 677) | 3 --- jdmarker.c (revision 677) |
4 +++ jdmarker.c (working copy) | 4 +++ jdmarker.c (working copy) |
5 @@ -906,7 +906,7 @@ | 5 @@ -906,7 +906,7 @@ |
6 } | 6 } |
7 | 7 |
8 if (cinfo->marker->discarded_bytes != 0) { | 8 if (cinfo->marker->discarded_bytes != 0) { |
9 - WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c); | 9 - WARNMS2(cinfo, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c); |
10 + TRACEMS2(cinfo, 1, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c)
; | 10 + TRACEMS2(cinfo, 1, JWRN_EXTRANEOUS_DATA, cinfo->marker->discarded_bytes, c)
; |
(...skipping 1917 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1928 +++ jdhuff.c (working copy) | 1928 +++ jdhuff.c (working copy) |
1929 @@ -742,7 +742,7 @@ | 1929 @@ -742,7 +742,7 @@ |
1930 * this module, since we'll just re-assign them on the next call.) | 1930 * this module, since we'll just re-assign them on the next call.) |
1931 */ | 1931 */ |
1932 | 1932 |
1933 -#define BUFSIZE (DCTSIZE2 * 2) | 1933 -#define BUFSIZE (DCTSIZE2 * 2) |
1934 +#define BUFSIZE (DCTSIZE2 * 2u) | 1934 +#define BUFSIZE (DCTSIZE2 * 2u) |
1935 | 1935 |
1936 METHODDEF(boolean) | 1936 METHODDEF(boolean) |
1937 decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) | 1937 decode_mcu (j_decompress_ptr cinfo, JBLOCKROW *MCU_data) |
| 1938 Index: simd/jsimdext.inc |
| 1939 =================================================================== |
| 1940 --- simd/jsimdext.inc (revision 97297) |
| 1941 +++ simd/jsimdext.inc (working copy) |
| 1942 @@ -73,6 +73,9 @@ |
| 1943 ; * *BSD family Unix using elf format |
| 1944 ; * Unix System V, including Solaris x86, UnixWare and SCO Unix |
| 1945 |
| 1946 +; PIC is the default on Linux |
| 1947 +%define PIC |
| 1948 + |
| 1949 ; mark stack as non-executable |
| 1950 section .note.GNU-stack noalloc noexec nowrite progbits |
| 1951 |
OLD | NEW |