You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
532 B
18 lines
532 B
6 years ago
|
diff --git a/jdmarker.c b/jdmarker.c
|
||
|
index 737a17c..381835b 100644
|
||
|
--- a/jdmarker.c
|
||
|
+++ b/jdmarker.c
|
||
|
@@ -348,6 +348,12 @@ get_sos (j_decompress_ptr cinfo)
|
||
|
|
||
|
TRACEMS3(cinfo, 1, JTRC_SOS_COMPONENT, cc,
|
||
|
compptr->dc_tbl_no, compptr->ac_tbl_no);
|
||
|
+
|
||
|
+ /* This CSi (cc) should differ from the previous CSi */
|
||
|
+ for (ci = 0; ci < i; ci++) {
|
||
|
+ if (cinfo->cur_comp_info[ci] == compptr)
|
||
|
+ ERREXIT1(cinfo, JERR_BAD_COMPONENT_ID, cc);
|
||
|
+ }
|
||
|
}
|
||
|
|
||
|
/* Collect the additional scan parameters Ss, Se, Ah/Al. */
|