summaryrefslogtreecommitdiff
path: root/libavcodec/avpacket.c
diff options
context:
space:
mode:
authorJames Almer <jamrial@gmail.com>2021-05-08 18:36:28 -0300
committerJames Almer <jamrial@gmail.com>2021-05-08 18:36:31 -0300
commitb4e7fc4b4b4aa71ae6806b57ebe1293239497f71 (patch)
tree0fa2327854402a693475d03f6f273dcf86c006ab /libavcodec/avpacket.c
parent0a029906b205613c7744bcef4cdda184199dd1a9 (diff)
avcodec/avpacket: use av_malloc() to allocate an AVPacket
av_mallocz() is superfluous as get_packet_defaults() is called immediately after it's allocated, which will initialize the entire struct to default values. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/avpacket.c')
-rw-r--r--libavcodec/avpacket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/avpacket.c b/libavcodec/avpacket.c
index 1f20cd1e6b..7383d12d3e 100644
--- a/libavcodec/avpacket.c
+++ b/libavcodec/avpacket.c
@@ -58,7 +58,7 @@ static void get_packet_defaults(AVPacket *pkt)
AVPacket *av_packet_alloc(void)
{
- AVPacket *pkt = av_mallocz(sizeof(AVPacket));
+ AVPacket *pkt = av_malloc(sizeof(AVPacket));
if (!pkt)
return pkt;