package kit: add a NULL check on requests
This avoid crashing on malformed repository URL (like missing http://).
This commit is contained in:
@@ -90,6 +90,9 @@ FetchFileJob::Execute()
|
|||||||
|
|
||||||
BUrlRequest* request = BUrlProtocolRoster::MakeRequest(fFileURL.String(),
|
BUrlRequest* request = BUrlProtocolRoster::MakeRequest(fFileURL.String(),
|
||||||
this);
|
this);
|
||||||
|
if (request == NULL)
|
||||||
|
return B_BAD_VALUE;
|
||||||
|
|
||||||
thread_id thread = request->Run();
|
thread_id thread = request->Run();
|
||||||
wait_for_thread(thread, NULL);
|
wait_for_thread(thread, NULL);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user