Skip to content

Commit e3bddc4

Browse files
pikasTechgitee-org
authored andcommitted
fix uninited value
1 parent a6da7df commit e3bddc4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/PikaParser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2931,7 +2931,7 @@ char* AST_genAsm(AST* oAST, Args* outBuffs) {
29312931
Args buffs = {0};
29322932
char* sPikaAsm = strsCopy(&buffs, "");
29332933
QueueObj* oExitBlock;
2934-
uint8_t is_block_matched;
2934+
uint8_t is_block_matched = 0;
29352935

29362936
if (NULL == oAST) {
29372937
sPikaAsm = NULL;

0 commit comments

Comments
 (0)