Fix #928. Fix memory leak, mea culpa.

This commit is contained in:
RichardHitt 2014-04-17 15:07:50 -07:00
parent b66edd372e
commit ccf49aa48d
1 changed files with 3 additions and 0 deletions

View File

@ -300,7 +300,10 @@ scrollback_load (session *sess)
/* If nothing but funny trailing matter e.g. 0x0d or 0x0d0a, toss it */
if (n_bytes >= 1 && buf[0] == 0x0d)
{
g_free (buf);
continue;
}
n_bytes--;
buf_tmp = buf;