Ian Abbott

Results 11 issues of Ian Abbott

TZif files are commonly used by the C standard libraries on most UNIX systems to calculate local time from universal time for a time zone, or (with some amount of...

The calls to `grep` in the script do not find the byte sequences in a UTF-8 locale as the zImage file gets treated as a text file in the current...

Free the allocated 'sender' string when returning NULL on error.

Some services (such as the MySql daemon) might not run as root (or the user that runs getssl), but might need access to the private key. On some systems, that...

enhancement

In the C test code "c/core/test/test.c", metrics added to the payload by `add_simple_metric()` have timestamps, but metrics added to the payload by `init_metric()` followed by `add_metric_to_payload()` do not have timestamps...

In "c/core/test/test.c", `publish_node_birth()` allocates memory pointed to by `row_data` but does not free it. One possible solution is to change `row_data` to a local array variable and clear the array...

In "c/core/Makefile", the rule for target `$(DNAME)` does not create the "lib" directory as is done for the `$(SNAME)` target. That is a problem when running `make lib/libtahu.so` to build...

You probably don't have time to work on this any more, but it would be nice if the stopwatch had a "split time" feature, similar to "pause" except that the...

`timespec_from_double` has this initialized variable: ``` struct timespec ts = { .tv_sec = s, .tv_nsec = (s - (long)(s)) * NSEC_PER_SEC, }; ``` On platforms with 32-bit `long` and the...