Fix redundant return statements

… at the end of a function with a void return type.

Found using clang-tidy's readability-redundant-control-flow.
This commit is contained in:
Orestis Floros
2018-04-26 23:58:42 +03:00
parent 55dd5b8d84
commit aca7790217
4 changed files with 0 additions and 13 deletions

View File

@ -664,5 +664,4 @@ geom_out:
free(geom);
out:
free(attr);
return;
}