lib/commit: fix checking flag with bitwise OR

Caught by Coverity.

Coverity CID: 1458339

Closes: #1290
Approved by: cgwalters
This commit is contained in:
Jonathan Lebon 2017-10-18 13:33:58 +00:00 committed by Atomic Bot
parent a2f8315eae
commit 18b85fa8bd

View File

@ -2835,7 +2835,7 @@ write_directory_content_to_mtree_internal (OstreeRepo *self,
file_type == G_FILE_TYPE_REGULAR
&& dfd_iter != NULL
&& delete_after_commit
&& (writeflags | WRITE_DIR_CONTENT_FLAGS_CAN_ADOPT) > 0;
&& ((writeflags & WRITE_DIR_CONTENT_FLAGS_CAN_ADOPT) > 0);
gboolean can_adopt = can_adopt_basic;
/* If basic prerquisites are met, check repo mode specific ones */
if (can_adopt)