summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGergely Nagy <algernon@bonhunter.rulez.org>2005-02-17 19:21:42 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-02-17 19:21:42 +0000
commita644f4d72ed174b692564c3eefa0acc40dad47c9 (patch)
tree45546eb8ea99e052e5639452e68b880190506db6
parent2ec437b971f73627798d5c419adf0e8dcaf4708c (diff)
downloadgst-plugins-bad-a644f4d72ed174b692564c3eefa0acc40dad47c9.tar.gz
gst-plugins-bad-a644f4d72ed174b692564c3eefa0acc40dad47c9.tar.bz2
gst-plugins-bad-a644f4d72ed174b692564c3eefa0acc40dad47c9.zip
gst/avi/gstavidemux.c: Declare variables at beginning of block and make gcc-2.95 happy
Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_invert): Declare variables at beginning of block and make gcc-2.95 happy (fixes # 167482, patch by Gergely Nagy). * gst/tcp/gsttcpclientsrc.c: * gst/tcp/gsttcpclientsrc.h: Move some includes into the header, so that struct sockaddr_in is defined when it should be defined on FreeBSD as well (fixes #167483). * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive): Don't pass uninitialised values to setsockopt() here either.
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 844ab6a0..5dd1dc78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,18 @@
+2005-02-17 Tim-Philipp Müller <tim at centricular dot net>
+
+ * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
+ Declare variables at beginning of block and make gcc-2.95 happy
+ (fixes # 167482, patch by Gergely Nagy).
+
+ * gst/tcp/gsttcpclientsrc.c:
+ * gst/tcp/gsttcpclientsrc.h:
+ Move some includes into the header, so that struct sockaddr_in is
+ defined when it should be defined on FreeBSD as well (fixes
+ #167483).
+
+ * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
+ Don't pass uninitialised values to setsockopt() here either.
+
2005-02-17 Luca Ognibene <luogni at tin dot it>
Reviewed by: Tim-Philipp Müller <tim at centricular dot net>