Verify that os_get_time() does not fail before using the time value when
authorJouni Malinen <j@w1.fi>
Thu, 28 Feb 2008 01:50:36 +0000 (17:50 -0800)
committerJouni Malinen <j@w1.fi>
Thu, 28 Feb 2008 01:50:36 +0000 (17:50 -0800)
registering an eloop timeout.

src/utils/eloop.c

index 021c516..f988e94 100644 (file)
@@ -242,7 +242,10 @@ int eloop_register_timeout(unsigned int secs, unsigned int usecs,
        timeout = os_malloc(sizeof(*timeout));
        if (timeout == NULL)
                return -1;
-       os_get_time(&timeout->time);
+       if (os_get_time(&timeout->time) < 0) {
+               os_free(timeout);
+               return -1;
+       }
        timeout->time.sec += secs;
        timeout->time.usec += usecs;
        while (timeout->time.usec >= 1000000) {