diff --git a/services/utils/init_utils.c b/services/utils/init_utils.c index 6774e738c3dc0d1f9a51189507d8f84b7964e390..e20578089d5e386d8460325ae64f2969287e5d6a 100755 --- a/services/utils/init_utils.c +++ b/services/utils/init_utils.c @@ -197,7 +197,7 @@ int SplitString(char *srcPtr, const char *del, char **dstPtr, int maxNum) while (dstPtr[counter] != NULL && (counter < maxNum)) { counter++; if (counter >= maxNum) { - break; + break; } dstPtr[counter] = strtok_r(NULL, del, &buf); }