Skip to content
Snippets Groups Projects
Commit 53675de7 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix issue with RIP and fragmented ANSI

If an ANSI sequence spanned multiple recv() calls, it would get
silently dropped if RIP was enabled.

Reported by skipperdoodle1947 (who does awesome stuff)
parent 60d953c9
No related branches found
No related tags found
No related merge requests found
Pipeline #6947 passed
......@@ -9,6 +9,7 @@ Fix telnets (broken when sftp support was added)
Update ANSI and win32 console support
Fix bug with window resizing calculations
New icons thanks to zuMi!
Fix RIP parsing when passed fragmented ANSI sequences
Version 1.2rc3
--------------
......
......@@ -15652,6 +15652,7 @@ unrip_line(BYTE *buf, unsigned *blen, unsigned *pos, size_t *rip_start, unsigned
*pos += insert;
pending_len = 0;
pending[0] = 0;
*rip_start = maxlen + 1;
}
 
static int
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment