Skip to content

Commit

Permalink
Fix pointer assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorTodorovskiIBM committed Jan 16, 2024
1 parent 26d8c65 commit 6b06dec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stable-patches/object-file.c.patch
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
diff --git a/object-file.c b/object-file.c
index 7dc0c4b..c610c8d 100644
index 7c7afe5..f634790 100644
--- a/object-file.c
+++ b/object-file.c
@@ -44,6 +44,11 @@
Expand Down Expand Up @@ -51,7 +51,7 @@ index 7dc0c4b..c610c8d 100644
+
+ if (attr_ccsid != file_ccsid) {
+ if (file_ccsid == 1047 && attr_ccsid == 819) {
+ autoconvertToASCII = 1;
+ *autoconvertToASCII = 1;
+ return;
+ }
+ // Allow tag mixing of 819 and 1208
Expand Down

0 comments on commit 6b06dec

Please sign in to comment.