From e9d80e40acf0e35facc67106932994358c49ad5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Tue, 23 Nov 2010 14:40:38 +0200 Subject: [PATCH] common: remove redundant predicate If the first character is a plus sign, then it is not a nul, then the string length is true anyway. --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.c b/src/common.c index b5b9a6f2..f32153cb 100644 --- a/src/common.c +++ b/src/common.c @@ -396,7 +396,7 @@ const char *phone_number_to_string(const struct ofono_phone_number *ph) void string_to_phone_number(const char *str, struct ofono_phone_number *ph) { - if (strlen(str) && str[0] == '+') { + if (str[0] == '+') { strcpy(ph->number, str+1); ph->type = 145; /* International */ } else {