jaymzh commented on this pull request.


> +    int rc = 0, ec = 0;
+
+    if (fd == NULL)
+       return -1;
+
+    fd = fdLink(fd);
+    for (FDSTACK_t fps = fd->fps; fps != NULL; fps = fps->prev) {
+       if (fps->fdno >= 0) {
+            rc = fsync(fps->fdno);
+           if (ec == 0 && rc)
+               ec = rc;
+       }
+
+       /* Leave freeing the last one after stats */
+       if (fps->prev == NULL)
+           break;

Ah. Woops, cleaned both of those up. Thanks.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/rpm-software-management/rpm/pull/187#discussion_r109998465
_______________________________________________
Rpm-maint mailing list
Rpm-maint@lists.rpm.org
http://lists.rpm.org/mailman/listinfo/rpm-maint

Reply via email to