mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 11:28:59 +08:00
55112eb54a
* Add mchehab/zbar * Quote all paths Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com> * Update to 0.23.90 * Flip name * Update version registry Co-authored-by: Cheney Wang <38240633+Cheney-W@users.noreply.github.com>
14 lines
387 B
Diff
14 lines
387 B
Diff
diff --git a/zbar/decoder/databar.c b/zbar/decoder/databar.c
|
|
index 8cfa848..ffb972e 100644
|
|
--- a/zbar/decoder/databar.c
|
|
+++ b/zbar/decoder/databar.c
|
|
@@ -695,7 +695,7 @@ lookup_sequence (databar_segment_t *seg,
|
|
seq[i++] = s;
|
|
}
|
|
dbprintf(2, "}");
|
|
- seq[n] = -1;
|
|
+ if (n<22) {seq[n]=-1;} /* https://github.com/mchehab/zbar/issues/219 */
|
|
return(fixed < 1);
|
|
}
|
|
|