Skip to content

Commit

Permalink
Fixed segfault in sysedit_diffCreateSpobInt.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbens committed Apr 26, 2024
1 parent fbe4316 commit 2039977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dev_sysedit.c
Original file line number Diff line number Diff line change
Expand Up @@ -2974,7 +2974,7 @@ static void sysedit_diffCreateSpobInt( const Spob *spb, UniHunkType_t type,
hunk.target.type = HUNK_TARGET_SPOB;
hunk.target.u.name = strdup( spb->name );
hunk.type = type;
hunk.dtype = HUNK_DATA_STRING;
hunk.dtype = HUNK_DATA_INT;
hunk.u.data = data;
uniedit_diffAdd( &hunk );
}
Expand Down

0 comments on commit 2039977

Please sign in to comment.