On 3/13/20 11:46 AM, Philippe Mathieu-Daudé wrote: > Replace strtoul() by qemu_strtoul() so checkpatch.pl won't complain > if we move this code later. ...
> p = str; > - val = strtoul(p, &e, 16); > - if (e == p || *e != ':') { > + if (qemu_strtoul(p, &e, 16, &val) < 0 || val > 0xffff || e == p) { > + goto inval; > + } > + if (*e != ':') { You can drop the e == p test. That's done in check_strtox_error, called by qemu_strtoul. Same for the other 2 instances. The range check looks wrong, as we have not yet decided if this element is "dom" or "bus". > - if (dom > 0xffff || bus > 0xff || slot > 0x1f || func > 7) { > + if (bus > 0xff) { I think it makes sense to leave this line unchanged. Increase the slot and func local variables increased to unsigned long so that the range check isn't truncated. r~