gst/gstclock.c: fixes structure initialisation of clock (bug #134128)

Original commit message from CVS:
reviewed by: David Schleef  <ds@schleef.org>
* gst/gstclock.c: (gst_clock_entry_new): fixes structure
initialisation of clock (bug #134128)
This commit is contained in:
David Schleef 2004-02-11 19:02:00 +00:00
parent 6545411956
commit 5fe57b5dc4
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2004-02-11 kost@imn.htwk-leipzig.de
reviewed by: David Schleef <ds@schleef.org>
* gst/gstclock.c: (gst_clock_entry_new): fixes structure
initialisation of clock (bug #134128)
2004-02-11 Thomas Vander Stichele <thomas at apestaart dot org>
* configure.ac:

View file

@ -76,7 +76,7 @@ gst_clock_entry_new (GstClock *clock, GstClockTime time,
entry->clock = clock;
entry->time = time;
entry->interval = time;
entry->interval = interval;
entry->type = type;
entry->status = GST_CLOCK_ENTRY_OK;