With the new "if (!submodule) return NULL;" code added in the previous
commit, we don't need to check if submodule is not NULL anymore.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
if (!submodule)
return NULL;
- if (submodule) {
- len = strlen(submodule);
- while (len && is_dir_sep(submodule[len - 1]))
- len--;
- if (!len)
- return NULL;
- }
+ len = strlen(submodule);
+ while (len && is_dir_sep(submodule[len - 1]))
+ len--;
+ if (!len)
+ return NULL;
if (submodule[len])
/* We need to strip off one or more trailing slashes */