core: Increase the size of variable for the init.<hardware>.rc file name.

The size of hardware is 32 bytes and the tmp variable should fit
'init.' and '.rc' as well. In some cases like for the ST-Ericsson
Snowball the 32 bytes were not enouth.
hardware = "st-ericssonsnowballplatform"

Signed-off-by: Amit Pundir <amit.pundir@linaro.org>
diff --git a/init/init.c b/init/init.c
index 93b5997..248a212 100755
--- a/init/init.c
+++ b/init/init.c
@@ -808,7 +808,7 @@
     struct pollfd ufds[4];
     char *tmpdev;
     char* debuggable;
-    char tmp[32];
+    char tmp[40]; /* "/init.%s.rc", hardware should fit */
     int property_set_fd_init = 0;
     int signal_fd_init = 0;
     int keychord_fd_init = 0;