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
08da247a
Commit
08da247a
authored
Dec 22, 2014
by
Roman Donchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cvOpenFileStorage: reduce the scope of xml_buf and make sure it's freed...
... before any exceptions occur.
parent
16ce114e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
persistence.cpp
modules/core/src/persistence.cpp
+2
-3
No files found.
modules/core/src/persistence.cpp
View file @
08da247a
...
...
@@ -2683,7 +2683,6 @@ CV_IMPL CvFileStorage*
cvOpenFileStorage
(
const
char
*
filename
,
CvMemStorage
*
dststorage
,
int
flags
,
const
char
*
encoding
)
{
CvFileStorage
*
fs
=
0
;
char
*
xml_buf
=
0
;
int
default_block_size
=
1
<<
18
;
bool
append
=
(
flags
&
3
)
==
CV_STORAGE_APPEND
;
bool
mem
=
(
flags
&
CV_STORAGE_MEMORY
)
!=
0
;
...
...
@@ -2822,7 +2821,7 @@ cvOpenFileStorage( const char* filename, CvMemStorage* dststorage, int flags, co
int
last_occurence
=
-
1
;
xml_buf_size
=
MIN
(
xml_buf_size
,
int
(
file_size
));
fseek
(
fs
->
file
,
-
xml_buf_size
,
SEEK_END
);
xml_buf
=
(
char
*
)
cvAlloc
(
xml_buf_size
+
2
);
char
*
xml_buf
=
(
char
*
)
cvAlloc
(
xml_buf_size
+
2
);
// find the last occurence of </opencv_storage>
for
(;;)
{
...
...
@@ -2840,6 +2839,7 @@ cvOpenFileStorage( const char* filename, CvMemStorage* dststorage, int flags, co
ptr
+=
strlen
(
substr
);
}
}
cvFree
(
&
xml_buf
);
if
(
last_occurence
<
0
)
{
cvReleaseFileStorage
(
&
fs
);
...
...
@@ -2954,7 +2954,6 @@ _exit_:
}
}
cvFree
(
&
xml_buf
);
return
fs
;
}
...
...
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