Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
c2e936de
Commit
c2e936de
authored
Jul 30, 2013
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tree-test: Refactor and plug memory leaks
With the most annoying memory leak found by Derek Buitenhuis.
parent
a9b04b2c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
11 deletions
+30
-11
tree.c
libavutil/tree.c
+30
-11
No files found.
libavutil/tree.c
View file @
c2e936de
...
...
@@ -18,6 +18,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "error.h"
#include "log.h"
#include "mem.h"
#include "tree.h"
...
...
@@ -211,32 +212,50 @@ static int cmp(void *a, const void *b)
int
main
(
void
)
{
int
i
;
void
*
k
;
AVTreeNode
*
root
=
NULL
,
*
node
=
NULL
;
AVLFG
prng
;
av_lfg_init
(
&
prng
,
1
);
for
(
i
=
0
;
i
<
10000
;
i
++
)
{
int
j
=
av_lfg_get
(
&
prng
)
%
86294
;
AVTreeNode
*
node2
=
NULL
;
intptr_t
j
=
av_lfg_get
(
&
prng
)
%
86294
;
void
*
ret
,
*
jj
=
(
void
*
)(
j
+
1
);
while
(
ret
=
av_tree_find
(
root
,
jj
,
cmp
,
NULL
))
{
j
=
av_lfg_get
(
&
prng
)
%
86294
;
jj
=
(
void
*
)(
j
+
1
);
}
if
(
check
(
root
)
>
999
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"FATAL error %d
\n
"
,
i
);
print
(
root
,
0
);
return
-
1
;
}
if
(
!
node
)
node
=
av_tree_node_alloc
();
av_tree_insert
(
&
root
,
(
void
*
)(
j
+
1
),
cmp
,
&
node
);
if
(
!
node
)
{
av_log
(
NULL
,
AV_LOG_ERROR
,
"Memory allocation failure.
\n
"
);
return
AVERROR
(
ENOMEM
);
}
av_tree_insert
(
&
root
,
jj
,
cmp
,
&
node
);
while
(
ret
=
av_tree_find
(
root
,
jj
,
cmp
,
NULL
))
{
j
=
av_lfg_get
(
&
prng
)
%
86294
;
{
AVTreeNode
*
node2
=
NULL
;
av_tree_insert
(
&
root
,
(
void
*
)(
j
+
1
),
cmp
,
&
node2
);
k
=
av_tree_find
(
root
,
(
void
*
)(
j
+
1
),
cmp
,
NULL
);
if
(
k
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"removal failure %d
\n
"
,
i
);
jj
=
(
void
*
)(
j
+
1
);
}
ret
=
av_tree_insert
(
&
root
,
jj
,
cmp
,
&
node2
);
if
(
ret
!=
jj
)
av_tree_destroy
(
node2
);
ret
=
av_tree_find
(
root
,
jj
,
cmp
,
NULL
);
if
(
ret
)
av_log
(
NULL
,
AV_LOG_ERROR
,
"removal failure %d
\n
"
,
i
);
}
av_tree_destroy
(
root
);
return
0
;
}
#endif
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