Displaying 2 results from an estimated 2 matches for "4987821".
2013 Sep 24
4
[PATCH 1/1] gpxe: fix possible null pointer dereference
...en
an arbitrary path (without "//" on it) is supplied to parse_uri() function
Signed-off-by: Felipe Pena <felipensp at gmail.com>
---
gpxe/src/core/uri.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gpxe/src/core/uri.c b/gpxe/src/core/uri.c
index 6a1f2e5..4987821 100644
--- a/gpxe/src/core/uri.c
+++ b/gpxe/src/core/uri.c
@@ -151,7 +151,7 @@ struct uri * parse_uri ( const char *uri_string ) {
}
/* Split authority into user[:password] and host[:port] portions */
- if ( ( tmp = strchr ( authority, '@' ) ) ) {
+ if ( authority != NULL && (...
2013 Oct 06
0
[PATCH 1/1] gpxe: fix possible null pointer dereference
..." on it) is supplied to parse_uri() function
>
> Signed-off-by: Felipe Pena <felipensp at gmail.com>
> ---
> gpxe/src/core/uri.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/gpxe/src/core/uri.c b/gpxe/src/core/uri.c
> index 6a1f2e5..4987821 100644
> --- a/gpxe/src/core/uri.c
> +++ b/gpxe/src/core/uri.c
> @@ -151,7 +151,7 @@ struct uri * parse_uri ( const char *uri_string ) {
> }
>
> /* Split authority into user[:password] and host[:port] portions
*/
> - if ( ( tmp = strchr ( authority, '@...