summaryrefslogtreecommitdiff
path: root/src/heretic/p_maputl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/heretic/p_maputl.c')
-rw-r--r--src/heretic/p_maputl.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/heretic/p_maputl.c b/src/heretic/p_maputl.c
index c72a6826..23aed3b2 100644
--- a/src/heretic/p_maputl.c
+++ b/src/heretic/p_maputl.c
@@ -23,6 +23,8 @@
// P_maputl.c
+#include <stdlib.h>
+
#include "doomdef.h"
#include "p_local.h"
@@ -98,7 +100,7 @@ int P_PointOnLineSide(fixed_t x, fixed_t y, line_t * line)
int P_BoxOnLineSide(fixed_t * tmbox, line_t * ld)
{
- int p1, p2;
+ int p1 = 0, p2 = 0;
switch (ld->slopetype)
{