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

svn_config__write

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Mon, 6 Feb 2017 12:52:29 +0000

svn_config__write() does:

1346 for (section)
1349 {
1352 SVN_ERR(svn_stream_printf(stream, section_pool, "\n[%s]\n",
1353 section->name));
1354
1355 for (option)
1361 SVN_ERR(svn_stream_printf(stream, options_pool, "%s=%s\n",
1362 option->name, option->value));
1364 }

Does this need to grow some validation? E.g., check that
the interpolated strings don't contain '\n' or '='?

Even if the current callsite doesn't care, future callsites might.
Received on 2017-02-06 13:56:38 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.