diff --git a/configure.ac b/configure.ac index 65e8606a..749012ca 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ dnl please read gstreamer/docs/random/autotools before changing this file dnl initialize autoconf dnl releases only do -Wall, git and prerelease does -Werror too dnl use a three digit version number for releases, and four for git/pre -AC_INIT([GStreamer Inference],[0.9.0.1],[https://github.com/RidgeRun/gst-inference/issues],[gst-inference]) +AC_INIT([GStreamer Inference],[0.9.1.1],[https://github.com/RidgeRun/gst-inference/issues],[gst-inference]) AG_GST_INIT diff --git a/gst-libs/gst/r2inference/gstbackend.cc b/gst-libs/gst/r2inference/gstbackend.cc index 27a82f27..f35edc3d 100644 --- a/gst-libs/gst/r2inference/gstbackend.cc +++ b/gst-libs/gst/r2inference/gstbackend.cc @@ -358,7 +358,7 @@ gst_backend_start (GstBackend *self, const gchar *model_location, priv->property_list->erase(property_it--); if (error.IsError ()) { GST_ERROR_OBJECT (self, "Failed to set backend parameters"); - goto error; + goto start_error; } } break; @@ -379,7 +379,7 @@ gst_backend_start (GstBackend *self, const gchar *model_location, priv->property_list->pop_front(); if (error.IsError ()) { GST_ERROR_OBJECT (self, "Failed to set backend parameters"); - goto error; + goto start_error; } } priv->backend_started = true;