Skip to content

Commit 6616f85

Browse files
committed
Avoid uninitialized pointer
1 parent 4caa2fd commit 6616f85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/t-pair.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -176,8 +176,8 @@
176176
/*
177177
***********************************************************************/
178178
{
179-
REBVAL *val;
180-
REBVAL *arg;
179+
REBVAL *val = NULL;
180+
REBVAL *arg = NULL;
181181
REBINT n;
182182
REBD32 x1, x2;
183183
REBD32 y1, y2;

0 commit comments

Comments
 (0)