Skip to content

Commit

Permalink
upstream: exit on parse failures in input_service_request; ok djm
Browse files Browse the repository at this point in the history
OpenBSD-Commit-ID: 6a7e1bfded26051d5aa893c030229b1ee6a0d5d2
  • Loading branch information
mfriedl authored and djmdjm committed Mar 13, 2020
1 parent 5f25afe commit 16d4f99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auth2.c
Original file line number Diff line number Diff line change
@@ -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.
*
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 16d4f99

Please sign in to comment.