Skip to content

Commit

Permalink
Fixed missing pointer increment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tylerlhess committed Jan 15, 2025
1 parent b17e9a7 commit 3c2dc88
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/analysisd/cleanevent.c
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ int OS_CleanMSG(char *msg, Eventinfo *lf)
if (pieces[0] == '<') {
/* Increment past the < */
pieces++;
lf->log++;
/*move past the 1-3 digits
Increment lf->log along the way */
while (isdigit((int)*pieces)) {
Expand Down

0 comments on commit 3c2dc88

Please sign in to comment.