You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-libs/libchewing/files/0.3.3-strncat-fix.patch

14 lines
436 B

diff --git a/src/tree.c b/src/tree.c
index 7e8f665..89ad0d5 100644
--- a/src/tree.c
+++ b/src/tree.c
@@ -586,7 +586,7 @@ static void LoadChar( char *buf, int buf_len, uint16 phoneSeq[], int nPhoneSeq )
memset(buf, 0, buf_len);
for ( i = 0; i < nPhoneSeq; i++ ) {
GetCharFirst( &word, phoneSeq[ i ] );
- strncat(buf, word.word, buf_len);
+ strncat(buf, word.word, buf_len - strlen(buf) - 1);
}
buf[ buf_len - 1 ] = '\0';
}