Skip to content

Commit

Permalink
Avoid a runtime check failure
Browse files Browse the repository at this point in the history
Without the initialization, Windows could complain a runtime check
failure.
  • Loading branch information
zsx committed Sep 14, 2015
1 parent 382c09e commit c948201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/os/host-text.c
Expand Up @@ -141,7 +141,7 @@ static u32* text_ext_words;
u32 *words, *w;
REBSER *obj;
REBCNT type;
REBXYF caret, highlightStart, highlightEnd;
REBXYF caret, highlightStart, highlightEnd = {0, 0};
REBXYF *pcaret = 0, *phighlightStart = 0;
obj = RXA_OBJECT(frm, 1);
//Reb_Print("RXI_WORDS_OF_OBJECT() called\n");
Expand Down

0 comments on commit c948201

Please sign in to comment.