From 0c2cf402aff1b6eef47e8bdfae77472589c42e0c Mon Sep 17 00:00:00 2001
From: Joseph Redmon <pjreddie@gmail.com>
Date: Fri, 09 May 2014 22:35:58 +0000
Subject: [PATCH] Some small fixes for frame
---
src/image.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/image.c b/src/image.c
index 453919f..e2c451b 100644
--- a/src/image.c
+++ b/src/image.c
@@ -199,6 +199,7 @@
image make_empty_image(int h, int w, int c)
{
image out;
+ out.data = 0;
out.h = h;
out.w = w;
out.c = c;
--
Gitblit v1.10.0