mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 08:55:33 +00:00
Don't unref seek event twice in case where fflush() fails
Original commit message from CVS: Don't unref seek event twice in case where fflush() fails
This commit is contained in:
parent
e409d977e8
commit
6c51a29b9a
3 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2005-01-24 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* gst/elements/gstfilesink.c: (gst_filesink_handle_event):
|
||||||
|
Don't unref seek event twice when fflush() fails
|
||||||
|
|
||||||
2005-01-22 David Schleef <ds@schleef.org>
|
2005-01-22 David Schleef <ds@schleef.org>
|
||||||
|
|
||||||
* configure.ac: Add --disable-valgrind. (partial fix for #164890)
|
* configure.ac: Add --disable-valgrind. (partial fix for #164890)
|
||||||
|
|
|
@ -363,6 +363,7 @@ gst_filesink_handle_event (GstPad * pad, GstEvent * event)
|
||||||
GST_ELEMENT_ERROR (filesink, RESOURCE, WRITE,
|
GST_ELEMENT_ERROR (filesink, RESOURCE, WRITE,
|
||||||
(_("Error while writing to file \"%s\"."), filesink->filename),
|
(_("Error while writing to file \"%s\"."), filesink->filename),
|
||||||
GST_ERROR_SYSTEM);
|
GST_ERROR_SYSTEM);
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -363,6 +363,7 @@ gst_filesink_handle_event (GstPad * pad, GstEvent * event)
|
||||||
GST_ELEMENT_ERROR (filesink, RESOURCE, WRITE,
|
GST_ELEMENT_ERROR (filesink, RESOURCE, WRITE,
|
||||||
(_("Error while writing to file \"%s\"."), filesink->filename),
|
(_("Error while writing to file \"%s\"."), filesink->filename),
|
||||||
GST_ERROR_SYSTEM);
|
GST_ERROR_SYSTEM);
|
||||||
|
return FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue