Add the sessiond notification-handling subsystem
[lttng-tools.git] / src / bin / lttng-sessiond / syscall.c
index a994da52bbda8460b9e138e0426827e98531a629..6ee38bd0fa27a3f51c5541f8601a890d130b8aed 100644 (file)
@@ -51,7 +51,7 @@ int syscall_init_table(void)
 
        fd = kernctl_syscall_list(kernel_tracer_fd);
        if (fd < 0) {
-               ret = -errno;
+               ret = fd;
                PERROR("kernelctl syscall list");
                goto error_ioctl;
        }
@@ -82,7 +82,7 @@ int syscall_init_table(void)
 
                        /* Double memory size. */
                        new_nbmem = max(index, nbmem << 1);
-                       if (new_nbmem < nbmem) {
+                       if (new_nbmem > (SIZE_MAX / sizeof(*new_list))) {
                                /* Overflow, stop everything, something went really wrong. */
                                ERR("Syscall listing memory size overflow. Stopping");
                                free(syscall_table);
This page took 0.026462 seconds and 5 git commands to generate.