You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
avformat/os_support: Use av_freep() to avoid leaving stale pointers in memory
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -159,9 +159,9 @@ void ff_freeaddrinfo(struct addrinfo *res)
|
||||
}
|
||||
#endif /* HAVE_WINSOCK2_H */
|
||||
|
||||
av_free(res->ai_canonname);
|
||||
av_free(res->ai_addr);
|
||||
av_free(res);
|
||||
av_freep(&res->ai_canonname);
|
||||
av_freep(&res->ai_addr);
|
||||
av_freep(&res);
|
||||
}
|
||||
|
||||
int ff_getnameinfo(const struct sockaddr *sa, int salen,
|
||||
|
||||
Reference in New Issue
Block a user