fix leak in option handling

This commit is contained in:
Matt Johnston 2018-03-07 22:14:36 +08:00
parent e9edbe8bb2
commit ed4c38ba46

View File

@ -168,6 +168,12 @@ int svr_add_pubkey_options(buffer *options_buf, int line_num, const char* filena
if (match_option(options_buf, "command=\"") == DROPBEAR_SUCCESS) {
int escaped = 0;
const unsigned char* command_start = buf_getptr(options_buf, 0);
if (ses.authstate.pubkey_options->forced_command) {
/* multiple command= options */
goto bad_option;
}
while (options_buf->pos < options_buf->len) {
const char c = buf_getbyte(options_buf);
if (!escaped && c == '"') {