diff options
Diffstat (limited to 'meta/recipes-devtools/subversion/subversion-1.7.10/subversion-CVE-2013-4277.patch')
-rw-r--r-- | meta/recipes-devtools/subversion/subversion-1.7.10/subversion-CVE-2013-4277.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/meta/recipes-devtools/subversion/subversion-1.7.10/subversion-CVE-2013-4277.patch b/meta/recipes-devtools/subversion/subversion-1.7.10/subversion-CVE-2013-4277.patch new file mode 100644 index 0000000000..a5900d8b7d --- /dev/null +++ b/meta/recipes-devtools/subversion/subversion-1.7.10/subversion-CVE-2013-4277.patch | |||
@@ -0,0 +1,15 @@ | |||
1 | Upstream-Status: Backport | ||
2 | |||
3 | --- a/subversion/svnserve/main.c | ||
4 | +++ b/subversion/svnserve/main.c | ||
5 | @@ -403,8 +403,9 @@ static svn_error_t *write_pid_file(const | ||
6 | const char *contents = apr_psprintf(pool, "%" APR_PID_T_FMT "\n", | ||
7 | getpid()); | ||
8 | |||
9 | + SVN_ERR(svn_io_remove_file2(filename, TRUE, pool)); | ||
10 | SVN_ERR(svn_io_file_open(&file, filename, | ||
11 | - APR_WRITE | APR_CREATE | APR_TRUNCATE, | ||
12 | + APR_WRITE | APR_CREATE | APR_EXCL, | ||
13 | APR_OS_DEFAULT, pool)); | ||
14 | SVN_ERR(svn_io_file_write_full(file, contents, strlen(contents), NULL, | ||
15 | pool)); | ||