Skip to content

Commit

Permalink
Fix bug #73237
Browse files Browse the repository at this point in the history
  • Loading branch information
KhromovNikita committed Feb 17, 2025
1 parent 6253e18 commit 722d4b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf/src/document.js
Original file line number Diff line number Diff line change
Expand Up @@ -6223,7 +6223,7 @@ var CPresentation = CPresentation || function(){};
// check lock adding/move drawings
if (undefined != AdditionalData) {
let oPageInfo = this.GetPageInfo(AdditionalData);
if (oPageInfo.IsDeleteLock()) {
if (oPageInfo && oPageInfo.IsDeleteLock()) {
return true;
}
}
Expand Down

0 comments on commit 722d4b6

Please sign in to comment.