소스 검색

[image] Avoid potential NULL pointer dereference

Detected using Valgrind.

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 12 년 전
부모
커밋
c124f21f56
1개의 변경된 파일5개의 추가작업 그리고 3개의 파일을 삭제
  1. 5
    3
      src/core/image.c

+ 5
- 3
src/core/image.c 파일 보기

@@ -96,9 +96,11 @@ struct image * alloc_image ( struct uri *uri ) {
96 96
 	ref_init ( &image->refcnt, free_image );
97 97
 	if ( uri ) {
98 98
 		image->uri = uri_get ( uri );
99
-		name = basename ( ( char * ) uri->path );
100
-		if ( ( rc = image_set_name ( image, name ) ) != 0 )
101
-			goto err_set_name;
99
+		if ( uri->path ) {
100
+			name = basename ( ( char * ) uri->path );
101
+			if ( ( rc = image_set_name ( image, name ) ) != 0 )
102
+				goto err_set_name;
103
+		}
102 104
 	}
103 105
 
104 106
 	return image;

Loading…
취소
저장