Fix: cppcheck linter cleanups
[lttng-tools.git] / src / common / uri.c
index 3550af9755d22c5c0449cc2f11c8cb2657a4d6df..f64a0de9fb88d24f4980fbce8623289fbd18510a 100644 (file)
@@ -342,7 +342,6 @@ ssize_t uri_parse(const char *str_uri, struct lttng_uri **uris)
         * so we can define the control and data port.
         */
        while (*purl == ':') {
-               int port;
                const char *port_b, *port_e;
                char *port_f;
 
@@ -369,6 +368,8 @@ ssize_t uri_parse(const char *str_uri, struct lttng_uri **uris)
                port_e = purl;
 
                if (port_b != port_e) {
+                       int port;
+
                        port_f = utils_strdupdelim(port_b, port_e);
                        if (port_f == NULL) {
                                goto free_error;
This page took 0.022945 seconds and 4 git commands to generate.