Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
92547ff9
Commit
92547ff9
authored
Sep 12, 2012
by
Paul Eggert
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
parent
44677e30
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
src/ChangeLog
src/ChangeLog
+4
-0
src/image.c
src/image.c
+1
-1
No files found.
src/ChangeLog
View file @
92547ff9
2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
* image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
* eval.c: Add `inhibit-debugger'.
...
...
src/image.c
View file @
92547ff9
...
...
@@ -6181,7 +6181,7 @@ our_memory_skip_input_data (j_decompress_ptr cinfo, long int num_bytes)
reading the image. */
static void
jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data,
unsigned in
t len)
jpeg_memory_src (j_decompress_ptr cinfo, JOCTET *data,
ptrdiff_
t len)
{
struct jpeg_source_mgr *src;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment