Xinqi Bao's Git

Fixed out of boundary write on long lines.
authorTobias Stoeckmann <[email protected]>
Sun, 2 Apr 2017 11:12:03 +0000 (13:12 +0200)
committerTobias Stoeckmann <[email protected]>
Sun, 2 Apr 2017 11:12:03 +0000 (13:12 +0200)
The terminating nul character ('\0') could be written outside the boundary of
the buffer which is used to read characters. If "sizeof(buffer)" characters
are read, the resulting value must not be used as index, because that's an off
by one.

Read sizeof(buffer)-1 bytes instead.

Signed-off-by: Tobias Stoeckmann <[email protected]>

No differences found