Fix off-by-one error in launch_other_browser
authorSteven Luo <steven+maemo@steven676.net>
Sun, 13 Dec 2009 08:45:12 +0000 (00:45 -0800)
committerSteven Luo <steven+maemo@steven676.net>
Sun, 13 Dec 2009 08:45:12 +0000 (00:45 -0800)
quote+1 has length one less than quote, so asking memmove() to move
strlen(quote)+1 bytes (including the \0) starting at quote+1 results in
writing one byte beyond the end of the memory area.  Found by valgrind.


No differences found