remove unnecessary pointer check

This commit is contained in:
c9s 2014-05-22 22:26:14 +08:00
parent fe5c2381b5
commit 62bb4e5460

View file

@ -246,11 +246,9 @@ match_entry * match_entry_createl(char * path, int path_len) {
}
void match_entry_free(match_entry * entry) {
if (entry) {
str_array_free(entry->vars);
zfree(entry);
}
}
@ -396,10 +394,8 @@ route * r3_route_create(char * path) {
}
void r3_route_free(route * route) {
if (route) {
zfree(route);
}
}
route * r3_route_createl(char * path, int path_len) {
route * info = zmalloc(sizeof(route));