commit | 95e5834ab6b6e5aa370cacd6266cecbd82c4c155 | [log] [tgz] |
---|---|---|
author | tsepez <tsepez@chromium.org> | Fri Oct 28 11:34:42 2016 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Fri Oct 28 11:34:42 2016 -0700 |
tree | a948ed773fe1faad6a6b2f4111e8f0c897ef4f40 | |
parent | 159ba95782e0610b217c42a60bbfbd99737e0771 [diff] [blame] |
Continue fixing FX_BOOL / int noise Review-Url: https://codereview.chromium.org/2459073002
diff --git a/fpdfsdk/cpdfsdk_formfillenvironment.cpp b/fpdfsdk/cpdfsdk_formfillenvironment.cpp index d93e309..f729f71 100644 --- a/fpdfsdk/cpdfsdk_formfillenvironment.cpp +++ b/fpdfsdk/cpdfsdk_formfillenvironment.cpp
@@ -766,5 +766,5 @@ } FX_BOOL CPDFSDK_FormFillEnvironment::GetPermissions(int nFlag) { - return GetPDFDocument()->GetUserPermissions() & nFlag; + return !!(GetPDFDocument()->GetUserPermissions() & nFlag); }