Skip to content

Commit

Permalink
Merge pull request eclipse-wakaama#337 from vzk/master
Browse files Browse the repository at this point in the history
Fix uncorrect parsing of IP literal within square brackets
  • Loading branch information
dnav committed Oct 17, 2017
2 parents 74c2528 + ae94855 commit 238b451
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion examples/shared/dtlsconnection.c
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,10 @@ dtls_connection_t * connection_create(dtls_connection_t * connList,
{
*(port - 1) = 0;
}
return NULL;
else
{
return NULL;
}
}
// split strings
*port = 0;
Expand Down

0 comments on commit 238b451

Please sign in to comment.