Fix incorrect pointer increment
commit72055a29115f7cd3d5bea70ca249c0b44daa2b9e
authorduncan-mcewan <64446406+duncan-mcewan@users.noreply.github.com>
Tue, 28 Apr 2020 19:47:18 +0000 (29 07:47 +1200)
committerJeffrey Altman <jaltman@auristor.com>
Fri, 6 Nov 2020 17:55:31 +0000 (6 12:55 -0500)
treef9eda5eba03861fa40db0e0a1b7243b8a9bb00dd
parent70ac8498447c8a5d90d313d67f8160b5cfa1bf94
Fix incorrect pointer increment

When encountering a backslash character the memmove() call removes it.  But then the pointer p should only be incremented by 1 to skip the escaped character rather than 2, which also skips the character following the escaped one.
lib/sl/sl.c