From: Thomas Vander Stichele Date: Sun, 20 May 2001 14:55:02 +0000 (+0000) Subject: reinstated exit(-1) when gstparse.c doesn't find the plugin mentioned X-Git-Tag: BRANCH-INCSCHED1-200105231-ROOT~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=90c0acec1cb8cbf4d694790fa7d1e9f949e11c2c;p=platform%2Fupstream%2Fgstreamer.git reinstated exit(-1) when gstparse.c doesn't find the plugin mentioned Original commit message from CVS: reinstated exit(-1) when gstparse.c doesn't find the plugin mentioned --- diff --git a/gst/gstparse.c b/gst/gstparse.c index 45f34b1..03eae20 100644 --- a/gst/gstparse.c +++ b/gst/gstparse.c @@ -232,7 +232,7 @@ if (GST_IS_GHOST_PAD(srcpad)) GST_DEBUG(0,"it's a ghost pad\n"); g_free(ptr); if (!element) { fprintf(stderr,"Couldn't create a '%s', no such element or need to run gstreamer-register?\n",arg); -// exit(-1); + exit(-1); } GST_DEBUG(0,"CREATED element %s\n",GST_ELEMENT_NAME(element)); }