diff options
author | Heiko Schlittermann (HS12-RIPE) <hs@schlittermann.de> | 2017-05-31 23:08:56 +0200 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-06-13 19:04:26 +0100 |
commit | 65e061b76867a9ea7aeeb535341b790b90ae6c21 (patch) | |
tree | 20a2ebccbb2a1f3ed9798bf574ebf26c9e88f34c /src | |
parent | 31323b30449a59713ed7a99f86e356cb1b9d0fb7 (diff) |
Cleanup (prevent repeated use of -p/-oMr to avoid mem leak)
Diffstat (limited to 'src')
-rw-r--r-- | src/src/exim.c | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/src/exim.c b/src/src/exim.c index 67583e584..88e119778 100644 --- a/src/src/exim.c +++ b/src/src/exim.c @@ -3106,7 +3106,14 @@ for (i = 1; i < argc; i++) /* -oMr: Received protocol */ - else if (Ustrcmp(argrest, "Mr") == 0) received_protocol = argv[++i]; + else if (Ustrcmp(argrest, "Mr") == 0) + + if (received_protocol) + { + fprintf(stderr, "received_protocol is set already\n"); + exit(EXIT_FAILURE); + } + else received_protocol = argv[++i]; /* -oMs: Set sender host name */ @@ -3202,7 +3209,15 @@ for (i = 1; i < argc; i++) if (*argrest != 0) { - uschar *hn = Ustrchr(argrest, ':'); + uschar *hn; + + if (received_protocol) + { + fprintf(stderr, "received_protocol is set already\n"); + exit(EXIT_FAILURE); + } + + hn = Ustrchr(argrest, ':'); if (hn == NULL) { received_protocol = argrest; |