diff --git a/AUTHORS b/AUTHORS index 3341f1ab8..cf2048eae 100644 --- a/AUTHORS +++ b/AUTHORS @@ -283,6 +283,9 @@ Karel Kulhavy Fixed compile incompatibility One of Links authors; a lot of misc. features & code +Karel Zak + Minor bug fixes + Karsten Schölzel Event system chief engineer Scripting subsystem hacking diff --git a/src/session/task.c b/src/session/task.c index 5297ca904..7120e703b 100644 --- a/src/session/task.c +++ b/src/session/task.c @@ -538,7 +538,8 @@ loading_callback(struct download *download, struct session *ses) } if (is_in_result_state(download->state) && download->state != S_OK) { - print_error_dialog(ses, download->state, download->conn->uri, + print_error_dialog(ses, download->state, + download->conn ? download->conn->uri : NULL, download->pri); if (d == DO_MOVE_ABORT) reload(ses, CACHE_MODE_NORMAL); }