Skip to content

Commit

Permalink
fix enforcer hit when saving requester object item
Browse files Browse the repository at this point in the history
  • Loading branch information
dmcoles committed Sep 16, 2024
1 parent 66069e0 commit e6174c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions reactionObject.e
Original file line number Diff line number Diff line change
Expand Up @@ -690,13 +690,13 @@ EXPORT PROC serialise(fser:PTR TO fileStreamer) OF reactionObject
i:=0
WHILE i<count
fieldname:=list[i++]
fieldptr:=list[i++]
fieldtype:=list[i++]
IF fieldname
StrCopy(tempStr,fieldname)
StrAdd(tempStr,': ')
UpperStr(tempStr)
fieldptr:=list[i++]
IF fieldptr
fieldtype:=list[i++]
SELECT fieldtype
CASE FIELDTYPE_CHAR
StringF(tempStr2,'\s\d',tempStr,Char(fieldptr))
Expand Down

0 comments on commit e6174c1

Please sign in to comment.