CM5200: Fix missing null-termination in hostname manipulation code
authorBartlomiej Sieka <tur@semihalf.com>
Fri, 5 Oct 2007 07:46:06 +0000 (09:46 +0200)
committerBartlomiej Sieka <tur@semihalf.com>
Fri, 5 Oct 2007 07:46:06 +0000 (09:46 +0200)
Signed-off-by: Bartlomiej Sieka <tur@semihalf.com>
board/cm5200/cm5200.c

index b74ac08..e2ab5b8 100644 (file)
@@ -397,6 +397,7 @@ int misc_init_r(void)
                                        "operational\n");
 
        /* set the hostname appropriate to the module we're running on */
+       hostname[0] = 0x00;
        compose_hostname(hw_id, hostname);
        setenv("hostname", hostname);