Skip to content

Commit e7fbd69

Browse files
committed
while at it fixing build warning on uninitialised var.
1 parent 9aaed7a commit e7fbd69

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_call_stack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,7 @@ static bool zend_call_stack_get_solaris_proc_maps(zend_call_stack *stack)
694694
struct rlimit rlim;
695695
char path[PATH_MAX];
696696
size_t size;
697-
ssize_t len;
697+
ssize_t len = -1;
698698
pid_t pid;
699699
int error, fd;
700700

0 commit comments

Comments
 (0)