rtsp_client: move "new_kd" out of the loop
This must persist iterations.
This commit is contained in:
parent
74a39c715b
commit
f34124a50b
|
@ -437,9 +437,9 @@ exec_request(struct rtspcl_data *rtspcld, const char *cmd,
|
|||
return false;
|
||||
}
|
||||
|
||||
struct key_data *new_kd = NULL;
|
||||
i = 0;
|
||||
while (read_line(rtspcld->fd, line, sizeof(line), timeout, 0) > 0) {
|
||||
struct key_data *new_kd = NULL;
|
||||
timeout = 1000; // once it started, it shouldn't take a long time
|
||||
if (i && line[0] == ' ') {
|
||||
for (j = 0; j < strlen(line); j++) if (line[j] != ' ') break;
|
||||
|
|
Loading…
Reference in New Issue