Don't create so many empty backup dirs.
[rsync.git] / ifuncs.h
index 0fe900a3db5e55979ef46a27682f9f4321183c1f..6b119aaf6074c87abc9d1aef703e856adb48bad3 100644 (file)
--- a/ifuncs.h
+++ b/ifuncs.h
@@ -1,6 +1,6 @@
 /* Inline functions for rsync.
  *
- * Copyright (C) 2007-2008 Wayne Davison
+ * Copyright (C) 2007-2014 Wayne Davison
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
@@ -35,6 +35,14 @@ realloc_xbuf(xbuf *xb, size_t sz)
        xb->size = sz;
 }
 
+static inline void
+free_xbuf(xbuf *xb)
+{
+       if (xb->buf)
+               free(xb->buf);
+       memset(xb, 0, sizeof (xbuf));
+}
+
 static inline int
 to_wire_mode(mode_t mode)
 {
@@ -66,3 +74,33 @@ d_name(struct dirent *di)
        return di->d_name;
 #endif
 }
+
+static inline void
+init_stat_x(stat_x *sx_p)
+{
+#ifdef SUPPORT_ACLS
+       sx_p->acc_acl = sx_p->def_acl = NULL;
+#endif
+#ifdef SUPPORT_XATTRS
+       sx_p->xattr = NULL;
+#endif
+}
+
+static inline void
+free_stat_x(stat_x *sx_p)
+{
+#ifdef SUPPORT_ACLS
+    {
+       extern int preserve_acls;
+       if (preserve_acls)
+               free_acl(sx_p);
+    }
+#endif
+#ifdef SUPPORT_XATTRS
+    {
+       extern int preserve_xattrs;
+       if (preserve_xattrs)
+               free_xattr(sx_p);
+    }
+#endif
+}