mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
Changed the bytes_written to a gint to avoid overflow...
Original commit message from CVS: Changed the bytes_written to a gint to avoid overflow...
This commit is contained in:
parent
1a06cd4731
commit
41381041f7
2 changed files with 2 additions and 2 deletions
|
@ -218,7 +218,7 @@ static void
|
|||
gst_disksink_chain (GstPad *pad, GstBuffer *buf)
|
||||
{
|
||||
GstDiskSink *disksink;
|
||||
guint16 bytes_written = 0;
|
||||
gint bytes_written = 0;
|
||||
|
||||
g_return_if_fail (pad != NULL);
|
||||
g_return_if_fail (GST_IS_PAD (pad));
|
||||
|
|
|
@ -218,7 +218,7 @@ static void
|
|||
gst_disksink_chain (GstPad *pad, GstBuffer *buf)
|
||||
{
|
||||
GstDiskSink *disksink;
|
||||
guint16 bytes_written = 0;
|
||||
gint bytes_written = 0;
|
||||
|
||||
g_return_if_fail (pad != NULL);
|
||||
g_return_if_fail (GST_IS_PAD (pad));
|
||||
|
|
Loading…
Reference in a new issue