Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
5a1539f3
Commit
5a1539f3
authored
Oct 09, 2007
by
Miles Bader
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing change from rel-22 branch to src/image.c
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-877
parent
c4b858e3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/image.c
src/image.c
+4
-4
No files found.
src/image.c
View file @
5a1539f3
...
...
@@ -6777,7 +6777,7 @@ our_common_term_source (cinfo)
whenever more data is needed. We read the whole image in one step,
so this only adds a fake end of input marker at the end. */
static JOCTET o
mfib
_buffer[2];
static JOCTET o
ur_memory
_buffer[2];
static boolean
our_memory_fill_input_buffer (cinfo)
...
...
@@ -6786,10 +6786,10 @@ our_memory_fill_input_buffer (cinfo)
/* Insert a fake EOI marker. */
struct jpeg_source_mgr *src = cinfo->src;
o
mfib
_buffer[0] = (JOCTET) 0xFF;
o
mfib
_buffer[1] = (JOCTET) JPEG_EOI;
o
ur_memory
_buffer[0] = (JOCTET) 0xFF;
o
ur_memory
_buffer[1] = (JOCTET) JPEG_EOI;
src->next_input_byte = o
mfib
_buffer;
src->next_input_byte = o
ur_memory
_buffer;
src->bytes_in_buffer = 2;
return 1;
}
...
...
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