upstream: exit on parse failures in input_service_request; ok djm

OpenBSD-Commit-ID: 6a7e1bfded26051d5aa893c030229b1ee6a0d5d2
This commit is contained in:
markus@openbsd.org 2020-03-06 18:16:21 +00:00 committed by Damien Miller
parent 5f25afe521
commit 16d4f9961c

View File

@ -1,4 +1,4 @@
/* $OpenBSD: auth2.c,v 1.157 2019/09/06 04:53:27 djm Exp $ */
/* $OpenBSD: auth2.c,v 1.158 2020/03/06 18:16:21 markus Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@ -217,7 +217,7 @@ input_service_request(int type, u_int32_t seq, struct ssh *ssh)
r = 0;
out:
free(service);
return 0;
return r;
}
#define MIN_FAIL_DELAY_SECONDS 0.005