Skip to content

Commit

Permalink
GH-31 Add FAULT_ADDR check to _cstore, similar to _store made earlier.
Browse files Browse the repository at this point in the history
  • Loading branch information
SirWumpus committed Sep 10, 2024
1 parent 07f33fd commit 3a803ed
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/post4.c
Original file line number Diff line number Diff line change
Expand Up @@ -2009,6 +2009,7 @@ _cfetch: w = P4_TOP(ctx->ds);

// ( char caddr -- )
_cstore: w = P4_POP(ctx->ds);
FAULT_ADDR(w.s);
*w.s = P4_POP(ctx->ds).u;
NEXT;

Expand Down

0 comments on commit 3a803ed

Please sign in to comment.