Commit ab2d91bd authored by Ben Laurie's avatar Ben Laurie
Browse files

Don't copy from a nonexistent next. Coverity ID 47.

parent 3b2eead3
Loading
Loading
Loading
Loading
+5 −2
Original line number Original line Diff line number Diff line
@@ -157,8 +157,11 @@ static int md_write(BIO *b, const char *in, int inl)
				(unsigned int)ret);
				(unsigned int)ret);
			}
			}
		}
		}
	if(b->next_bio != NULL)
		{
		BIO_clear_retry_flags(b);
		BIO_clear_retry_flags(b);
		BIO_copy_next_retry(b);
		BIO_copy_next_retry(b);
		}
	return(ret);
	return(ret);
	}
	}