Skip to content

Commit

Permalink
rtpengine: init all struct to get rid of compile warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Nov 3, 2016
1 parent f609a83 commit 76e2a0d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/rtpengine/rtpengine.c
Expand Up @@ -593,8 +593,7 @@ static inline int str_eq(const str *p, const char *q) {
}

static inline str str_prefix(const str *p, const char *q) {
str ret;
ret.s = NULL;
str ret = STR_NULL;
int l = strlen(q);
if (p->len < l)
return ret;
Expand Down

0 comments on commit 76e2a0d

Please sign in to comment.