consumerd: clean-up: stream attribute accessed without locking stream
[lttng-tools.git] / src / common / string-utils / string-utils.c
index c91d920e527799acec92b97b81108b32ce4c46df..325f54b537a29cb36ac150a144460fcd298a2e52 100644 (file)
@@ -117,6 +117,7 @@ end:
  * Returns true if `pattern` is a star-only globbing pattern, that is,
  * it contains at least one non-escaped `*`.
  */
+LTTNG_HIDDEN
 bool strutils_is_star_glob_pattern(const char *pattern)
 {
        return strutils_test_glob_pattern(pattern) &
@@ -127,6 +128,7 @@ bool strutils_is_star_glob_pattern(const char *pattern)
  * Returns true if `pattern` is a globbing pattern with a globbing,
  * non-escaped star only at its very end.
  */
+LTTNG_HIDDEN
 bool strutils_is_star_at_the_end_only_glob_pattern(const char *pattern)
 {
        return strutils_test_glob_pattern(pattern) &
@@ -355,7 +357,7 @@ char **strutils_split(const char *input, char delim, bool escape_delim)
 
 error:
        strutils_free_null_terminated_array_of_strings(substrings);
-
+       substrings = NULL;
 end:
        return substrings;
 }
This page took 0.024595 seconds and 4 git commands to generate.