mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
gst/tcp/: Add <string.h> includes for memset and FD_ZERO (fixes #323878;
Original commit message from CVS: * gst/tcp/gsttcp.c: * gst/tcp/gsttcpclientsink.c: * gst/tcp/gsttcpserversink.c: * gst/tcp/gsttcpserversrc.c: Add <string.h> includes for memset and FD_ZERO (fixes #323878; patch by: Benjamin Pineau).
This commit is contained in:
parent
6daa44816d
commit
4c419b0185
5 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,12 @@
|
|||
2005-12-16 Tim-Philipp Müller <tim at centricular dot net>
|
||||
|
||||
* gst/tcp/gsttcp.c:
|
||||
* gst/tcp/gsttcpclientsink.c:
|
||||
* gst/tcp/gsttcpserversink.c:
|
||||
* gst/tcp/gsttcpserversrc.c:
|
||||
Add <string.h> includes for memset and FD_ZERO (fixes #323878;
|
||||
patch by: Benjamin Pineau).
|
||||
|
||||
2005-12-15 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include <netinet/in.h>
|
||||
#include <arpa/inet.h>
|
||||
#include <netdb.h>
|
||||
#include <string.h> /* memset, in FD_ZERO macro */
|
||||
#include <unistd.h>
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
|
|
|
@ -25,6 +25,7 @@
|
|||
#include <gst/dataprotocol/dataprotocol.h>
|
||||
#include "gsttcp.h"
|
||||
#include "gsttcpclientsink.h"
|
||||
#include <string.h> /* memset */
|
||||
|
||||
/* elementfactory information */
|
||||
static GstElementDetails gst_tcp_client_sink_details =
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
#include "config.h"
|
||||
#endif
|
||||
#include <gst/gst-i18n-plugin.h>
|
||||
#include <string.h> /* memset */
|
||||
|
||||
#include <sys/ioctl.h>
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <gst/gst-i18n-plugin.h>
|
||||
#include "gsttcp.h"
|
||||
#include "gsttcpserversrc.h"
|
||||
#include <string.h> /* memset */
|
||||
#include <unistd.h>
|
||||
#include <sys/ioctl.h>
|
||||
#include <fcntl.h>
|
||||
|
|
Loading…
Reference in a new issue