On 06/09/14 09:01, Eric Sandeen wrote:
On 6/9/14, 8:02 AM, Brian Foster wrote:
On Fri, Jun 06, 2014 at 04:03:10PM -0500, Eric Sandeen wrote:
Ensure that the string we read from leftofffile is NULL
terminated; the buffer gets passed to strchr(), so
it's important that we ensure it ends with NULL.
Signed-off-by: Eric Sandeen<sandeen@xxxxxxxxxx>
---
diff --git a/fsr/xfs_fsr.c b/fsr/xfs_fsr.c
index 3818f02..94d235c 100644
--- a/fsr/xfs_fsr.c
+++ b/fsr/xfs_fsr.c
@@ -554,6 +554,8 @@ fsrallfs(char *mtab, int howlong, char *leftofffile)
fsrprintf(_("could not read %s, starting with %s\n"),
leftofffile, *fs->dev);
} else {
+ /* Ensure the buffer we read is null terminated */
+ buf[SMBUFSZ-1] = '\0';
Maybe just initialize the buffer..?
and then read no more than SMBUFSZ-1... I dunno, 6 one way, half a dozen
the other?
I like my bike shed pained red with white and blue swirlies. :)
The strings should be NULL terminated for the string ops. It makes more
sense to NULL one byte than 1024. If the full SMBUFSZ bytes are desired,
then bump the array for the NULL byte.
--Mark.
_______________________________________________
xfs mailing list
xfs@xxxxxxxxxxx
http://oss.sgi.com/mailman/listinfo/xfs