Skip to content

Commit

Permalink
Add sip-siplib patch
Browse files Browse the repository at this point in the history
  • Loading branch information
pineoncellar committed Oct 30, 2024
1 parent 12f59fd commit a62e3e6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions patches/sip-siplib.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/depends/sip-4.19.25/siplib/siplib.c b/depends/sip-4.19.25/siplib/siplib.c
index db52b68..8019e97 100644
--- a/depends/sip-4.19.25/siplib/siplib.c
+++ b/depends/sip-4.19.25/siplib/siplib.c
@@ -13747,7 +13747,7 @@ static struct _frame *sip_api_get_frame(int depth)

while (frame != NULL && depth > 0)
{
- frame = frame->f_back;
+ frame = PyFrame_GetBack(frame);
--depth;
}

0 comments on commit a62e3e6

Please sign in to comment.