Skip to content

Commit

Permalink
Merge branch 'dev-0.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
c-trejos committed Mar 20, 2020
2 parents 95de4f6 + 0fa744e commit 3007fee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions gst-libs/gst/r2inference/gstbackend.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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;
Expand Down

0 comments on commit 3007fee

Please sign in to comment.