Issue #1458 - fix unint variable.

This commit is contained in:
Adam Sutton 2012-12-19 20:04:56 +00:00
parent a420c83a0e
commit b1d20d3255

View file

@ -380,7 +380,7 @@ makedirs ( const char *inpath, int mode )
int
rmtree ( const char *path )
{
int err;
int err = 0;
struct dirent de, *der;
struct stat st;
char buf[512];