Attention is currently required from: laforge.
Patch set 1:Code-Review -1
1 comment:
File src/server/rest_api.c:
Patch Set #1, Line 413: if (map_id == ULONG_MAX) {
man strtoul:
"""
Since strtoul() can legitimately return 0 or ULONG_MAX (ULLONG_MAX for strtoull()) on both success and failure, the calling program should set errno
to 0 before the call, and then determine if an error occurred by checking whether errno has a nonzero value after the call.
"""
To view, visit change 31179. To unsubscribe, or for help writing mail filters, visit settings.