From 7894cc8b7bbef8d73ad263c22336080dd56787cd Mon Sep 17 00:00:00 2001 From: Bill Zissimopoulos Date: Sat, 24 Sep 2016 15:09:15 -0700 Subject: [PATCH] sys: fileinfo.c: minor comment change --- src/sys/fileinfo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sys/fileinfo.c b/src/sys/fileinfo.c index 2367c725..6f8cce17 100644 --- a/src/sys/fileinfo.c +++ b/src/sys/fileinfo.c @@ -411,7 +411,7 @@ static NTSTATUS FspFsvolQueryStreamInformationCopy( if ((PUINT8)DestBuf + BaseInfoLen + StreamNameLength > DestBufEnd) { - /* only copy as much of the stream name as we can and return STATUS_BUFFER_OVERFLOW */ + /* copy as much of the stream name as we can and return STATUS_BUFFER_OVERFLOW */ StreamNameLength = (ULONG)(DestBufEnd - ((PUINT8)DestBuf + BaseInfoLen)); Result = STATUS_BUFFER_OVERFLOW; }