[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: [PATCH] Remove 'svnver' array warning in svndiff.c when

From: Philip Martin <philip.martin_at_wandisco.com>
Date: Wed, 04 Nov 2009 17:09:47 +0000

Edmund Wong <ed_at_kdtc.net> writes:

> During a Windows compile under VS2008, the following warning is shown:
>
> ..\..\..\subversion\libsvn_delta\svndiff.c(193): warning C4295: 'svnver' :
> array is too small to include a terminating null character

> Index: subversion/libsvn_delta/svndiff.c
> ===================================================================
> --- subversion/libsvn_delta/svndiff.c (revision 40372)
> +++ subversion/libsvn_delta/svndiff.c (working copy)
> @@ -190,7 +190,7 @@
> /* Make sure we write the header. */
> if (eb->header_done == FALSE)
> {
> - char svnver[4] = "SVN\0";
> + char svnver[4] = {'S','V','N',0};
> len = 4;
> svnver[3] = eb->version;
> SVN_ERR(svn_stream_write(eb->output, svnver, &len));

The old code is valid C as I think you know. It's a slightly obscure
corner of the language; perhaps we should use {'S', 'V', 'N', '-'} to
indicate that it is not a null terminated string.

-- 
Philip
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=2414466
Received on 2009-11-04 19:58:04 CET

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.