Skip to content

Commit 13050d8

Browse files
test
1 parent a7af3c4 commit 13050d8

File tree

8 files changed

+13
-10
lines changed

8 files changed

+13
-10
lines changed

dynamsoft_barcode_reader_bundle/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.10.8910"
1+
__version__ = "4.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftCore

dynamsoft_barcode_reader_bundle/cvr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.10.8910"
1+
__version__ = "3.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dbr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "11.0.10.8910"
1+
__version__ = "11.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from .core import *

dynamsoft_barcode_reader_bundle/dip.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.0.10.8910"
1+
__version__ = "3.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftImageProcessing

dynamsoft_barcode_reader_bundle/dnn.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.10.8910"
1+
__version__ = "2.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftNeuralNetwork

dynamsoft_barcode_reader_bundle/license.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "4.0.10.8910"
1+
__version__ = "4.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from . import _DynamsoftLicense

dynamsoft_barcode_reader_bundle/utility.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.10.8910"
1+
__version__ = "2.0.10.8914"
22

33
if __package__ or "." in __name__:
44
from .cvr import *

src/DynamsoftUtility_wrap.cxx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7159,10 +7159,13 @@ SWIGINTERN PyObject *_wrap_CMultiFrameResultCrossFilter_EnableLatestOverlapping(
71597159
return;
71607160
dynamsoft::basic_structures::CPoint* array = nullptr;
71617161
int length = 0;
7162-
if(getCpointArraryFromPyList(attr_value, &array, &length) && length==4)
7162+
if(getCpointArraryFromPyList(attr_value, &array, &length))
71637163
{
7164-
for(int i = 0; i < 4; i++)
7165-
quad->points[i] = array[i];
7164+
if(length==4)
7165+
{
7166+
for(int i = 0; i < 4; i++)
7167+
quad->points[i] = array[i];
7168+
}
71667169
delete[] array, array = nullptr;
71677170
}
71687171
Py_DECREF(attr_value);

0 commit comments

Comments
 (0)