From: Eric Curtin Date: Tue, 15 Sep 2015 20:27:20 +0000 (+0100) Subject: tools: usbip: detach: avoid calling strlen() at each iteration X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=0c61814544cfe0db7c4c4adf38e51d015c7175f9;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git tools: usbip: detach: avoid calling strlen() at each iteration Instead of calling strlen on every iteration of the for loop, just call it once and cache the result in a temporary local variable which will be used in the for loop instead. Signed-off-by: Eric Curtin Signed-off-by: Greg Kroah-Hartman --- diff --git a/tools/usb/usbip/src/usbip_detach.c b/tools/usb/usbip/src/usbip_detach.c index 05c6d15856eb..9db9d21bb2ec 100644 --- a/tools/usb/usbip/src/usbip_detach.c +++ b/tools/usb/usbip/src/usbip_detach.c @@ -47,7 +47,9 @@ static int detach_port(char *port) uint8_t portnum; char path[PATH_MAX+1]; - for (unsigned int i = 0; i < strlen(port); i++) + unsigned int port_len = strlen(port); + + for (unsigned int i = 0; i < port_len; i++) if (!isdigit(port[i])) { err("invalid port %s", port); return -1;