Fix: lttng: sanity check of `--probe` description
[lttng-tools.git] / src / bin / lttng / commands / enable_events.c
index 84bcb20814233c8928a53b9fd8e1d93e88b453d5..f6bae4874266863e3de6c20350565ad1dc4e0523 100644 (file)
@@ -160,8 +160,13 @@ static int parse_probe_opts(struct lttng_event *ev, char *opt)
        /* Check for address */
        match = sscanf(opt, "%" S_HEX_LEN_SCANF_IS_A_BROKEN_API "s", s_hex);
        if (match > 0) {
-               if (*s_hex == '\0') {
-                       ERR("Invalid probe address %s", s_hex);
+               /*
+                * Return an error if the first character of the tentative
+                * address is NULL or not a digit. It can be "0" if the address
+                * is in hexadecimal and can be 1 to 9 if it's in decimal.
+                */
+               if (*s_hex == '\0' || !isdigit(*s_hex)) {
+                       ERR("Invalid probe description %s", s_hex);
                        ret = CMD_ERROR;
                        goto end;
                }
This page took 0.024668 seconds and 5 git commands to generate.