1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:12:57 +01:00

sys/uri_parser: check for uri_end instead of 0

This commit is contained in:
Cenk Gündoğan 2020-04-02 00:09:43 +02:00
parent cd0b765346
commit e3d9097974

View File

@ -176,9 +176,10 @@ static char *_consume_path(uri_parser_result_t *result, char *uri,
static int _parse_relative(uri_parser_result_t *result, char *uri,
char *uri_end)
{
/* we expect '\0', i.e., end of string */
uri = _consume_path(result, uri, uri_end);
if (uri[0] != '\0') {
/* uri should point to uri_end, otherwise there's something left
* to consume ... */
if (uri != uri_end) {
return -1;
}