Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
226b4e3e
Commit
226b4e3e
authored
Mar 20, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3839 from hyperscience:fix-free-space-check-in-grow-seq
parents
69344f17
8755ffbf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
datastructs.cpp
modules/core/src/datastructs.cpp
+1
-1
No files found.
modules/core/src/datastructs.cpp
View file @
226b4e3e
...
...
@@ -645,7 +645,7 @@ icvGrowSeq( CvSeq *seq, int in_front_of )
/* If there is a free space just after last allocated block
and it is big enough then enlarge the last block.
This can happen only if the new block is added to the end of sequence: */
if
(
(
unsigned
)(
ICV_FREE_PTR
(
storage
)
-
seq
->
block_max
)
<
CV_STRUCT_ALIGN
&&
if
(
(
size_t
)(
ICV_FREE_PTR
(
storage
)
-
seq
->
block_max
)
<
CV_STRUCT_ALIGN
&&
storage
->
free_space
>=
seq
->
elem_size
&&
!
in_front_of
)
{
int
delta
=
storage
->
free_space
/
elem_size
;
...
...
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