Attention is currently required from: pespin.
1 comment:
File src/sccp2sua.c:
Patch Set #1, Line 74: if (in_num_bytes * 2 >= out_digits_size)
shouldn't you account for one extra byte in this check in the case it's even number of bytes? becaus […]
Note that the check is using `>=`, i.e. we accept the input only when `out_digits_size > in_num_bytes * 2`. Equivalent to `(in_num_bytes * 2 + 1) > out_digits_size`. Am I missing something here?
To view, visit change 43163. To unsubscribe, or for help writing mail filters, visit settings.