Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix out-of-bound read for invalid XML
In the given example, there is an invalid field: To: sut <sip:[service]@[remote_ip]:"remote_port]> There are no more quotes later. When we search for the terminating quote, nothing is found, so we skip to the end of the string. Then the loop continues, we have p++ and continue beyond the buffer. Fixes #727.
- Loading branch information