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
fbc472da
Commit
fbc472da
authored
Jun 05, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avutil/mem: simplify av_reallocp_array() by using av_realloc_f()
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
21bf0d6f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
12 deletions
+2
-12
mem.c
libavutil/mem.c
+2
-12
No files found.
libavutil/mem.c
View file @
fbc472da
...
@@ -190,19 +190,9 @@ void *av_realloc_array(void *ptr, size_t nmemb, size_t size)
...
@@ -190,19 +190,9 @@ void *av_realloc_array(void *ptr, size_t nmemb, size_t size)
int
av_reallocp_array
(
void
*
ptr
,
size_t
nmemb
,
size_t
size
)
int
av_reallocp_array
(
void
*
ptr
,
size_t
nmemb
,
size_t
size
)
{
{
void
**
ptrptr
=
ptr
;
void
**
ptrptr
=
ptr
;
void
*
ret
;
*
ptrptr
=
av_realloc_f
(
*
ptrptr
,
nmemb
,
size
);
if
(
size
<=
0
||
nmemb
>=
INT_MAX
/
size
)
if
(
!*
ptrptr
&&
!
(
nmemb
&&
size
))
return
AVERROR
(
ENOMEM
);
if
(
nmemb
<=
0
)
{
av_freep
(
ptr
);
return
0
;
}
ret
=
av_realloc
(
*
ptrptr
,
nmemb
*
size
);
if
(
!
ret
)
{
av_freep
(
ptr
);
return
AVERROR
(
ENOMEM
);
return
AVERROR
(
ENOMEM
);
}
*
ptrptr
=
ret
;
return
0
;
return
0
;
}
}
...
...
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