mailru: fix rare nil pointer panic

s3-about
Ivan Andreev 2019-09-12 23:07:25 +03:00 committed by Nick Craig-Wood
parent 3cff258577
commit 8fb44a822d
1 changed files with 2 additions and 2 deletions

View File

@ -217,11 +217,11 @@ var retryErrorCodes = []int{
// deserve to be retried. It returns the err as a convenience.
// Retries password authorization (once) in a special case of access denied.
func shouldRetry(res *http.Response, err error, f *Fs, opts *rest.Opts) (bool, error) {
if res.StatusCode == 403 && f.opt.Password != "" && !f.passFailed {
if res != nil && res.StatusCode == 403 && f.opt.Password != "" && !f.passFailed {
reAuthErr := f.reAuthorize(opts, err)
return reAuthErr == nil, err // return an original error
}
if f.quirks.retry400 && res.StatusCode == 400 {
if res != nil && res.StatusCode == 400 && f.quirks.retry400 {
return true, err
}
return fserrors.ShouldRetry(err) || fserrors.ShouldRetryHTTP(res, retryErrorCodes), err