[pkg-bacula-commits] [bacula] 04/27: Removed debian/patches/xattr-btrfs-crash.patch, fixed in upstream 5.2.7
Carsten Leonhardt
cl-guest at moszumanska.debian.org
Sun Jul 19 22:38:29 UTC 2015
This is an automated email from the git hooks/post-receive script.
cl-guest pushed a commit to branch master
in repository bacula.
commit 3affde0fc3b02dff09941ed4e5e198512be4d6af
Author: Carsten Leonhardt <leo at debian.org>
Date: Mon Jul 20 00:09:42 2015 +0200
Removed debian/patches/xattr-btrfs-crash.patch, fixed in upstream 5.2.7
---
debian/patches/xattr-btrfs-crash.patch | 50 ----------------------------------
1 file changed, 50 deletions(-)
diff --git a/debian/patches/xattr-btrfs-crash.patch b/debian/patches/xattr-btrfs-crash.patch
deleted file mode 100644
index 5f14d6a..0000000
--- a/debian/patches/xattr-btrfs-crash.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-Description: Fix crash on saving xattr from btrfs.
-Bug: http://bugs.bacula.org/view.php?id=1874
-Author: Marco van Wieringen <mvw at planets.elm.net>
-Reviewed-by: Alexander Golovko <alexandro at ankalagon.ru>
-Last-Update: 2012-09-25
-
-diff --git a/src/filed/xattr.c b/src/filed/xattr.c
-index 40a5127..b6884ea 100644
---- a/src/filed/xattr.c
-+++ b/src/filed/xattr.c
-@@ -448,6 +448,7 @@ static bxattr_exit_code aix_xattr_build_streams(JCR *jcr, FF_PKT *ff_pkt)
- * Each xattr valuepair starts with a magic so we can parse it easier.
- */
- current_xattr = (xattr_t *)malloc(sizeof(xattr_t));
-+ memset(current_xattr, 0, sizeof(xattr_t));
- current_xattr->magic = XATTR_MAGIC;
- expected_serialize_len += sizeof(current_xattr->magic);
-
-@@ -739,6 +740,7 @@ static bxattr_exit_code irix_xattr_build_streams(JCR *jcr, FF_PKT *ff_pkt)
- * Each xattr valuepair starts with a magic so we can parse it easier.
- */
- current_xattr = (xattr_t *)malloc(sizeof(xattr_t));
-+ memset(current_xattr, 0, sizeof(xattr_t));
- current_xattr->magic = XATTR_MAGIC;
- expected_serialize_len += sizeof(current_xattr->magic);
-
-@@ -1197,6 +1199,7 @@ static bxattr_exit_code generic_xattr_build_streams(JCR *jcr, FF_PKT *ff_pkt)
- * Each xattr valuepair starts with a magic so we can parse it easier.
- */
- current_xattr = (xattr_t *)malloc(sizeof(xattr_t));
-+ memset(current_xattr, 0, sizeof(xattr_t));
- current_xattr->magic = XATTR_MAGIC;
- expected_serialize_len += sizeof(current_xattr->magic);
-
-@@ -1655,6 +1658,7 @@ static bxattr_exit_code bsd_build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt)
- * Each xattr valuepair starts with a magic so we can parse it easier.
- */
- current_xattr = (xattr_t *)malloc(sizeof(xattr_t));
-+ memset(current_xattr, 0, sizeof(xattr_t));
- current_xattr->magic = XATTR_MAGIC;
- expected_serialize_len += sizeof(current_xattr->magic);
-
-@@ -2082,6 +2086,7 @@ static bxattr_exit_code tru64_build_xattr_streams(JCR *jcr, FF_PKT *ff_pkt)
- * Each xattr valuepair starts with a magic so we can parse it easier.
- */
- current_xattr = (xattr_t *)malloc(sizeof(xattr_t));
-+ memset(current_xattr, 0, sizeof(xattr_t));
- current_xattr->magic = XATTR_MAGIC;
- expected_serialize_len += sizeof(current_xattr->magic);
-
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-bacula/bacula.git
More information about the pkg-bacula-commits
mailing list