Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
profile: don't abort when class does not exist
  • Loading branch information
perexg committed Oct 13, 2014
1 parent 7bc16b6 commit f6e0f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/profile.c
Expand Up @@ -74,7 +74,7 @@ profile_create
pb = profile_class_find(s);
if (pb == NULL) {
tvherror("profile", "wrong class %s!", s);
abort();
return NULL;
}
pro = pb->build();
if (pro == NULL) {
Expand Down

0 comments on commit f6e0f50

Please sign in to comment.