Removed memory leaks

Fixed bug in console driver (wasn't completing irp)

svn path=/trunk/; revision=194
This commit is contained in:
David Welch
1999-01-28 21:41:05 +00:00
parent 0bcca89137
commit 9a068f8b4b
12 changed files with 82 additions and 104 deletions

View File

@@ -75,6 +75,7 @@ void ExecuteDir(char* cmdline)
debug_printf("%s\n",FindData.cFileName);
} while(FindNextFile(shandle,&FindData));
debug_printf("\n %d files\n %d directories\n\n",nFile,nRep);
FindClose(shandle);
}
void ExecuteType(char* cmdline)
@@ -99,6 +100,7 @@ void ExecuteType(char* cmdline)
debug_printf("%c",c);
c = 0;
}
CloseHandle(FileHandle);
}
int ExecuteProcess(char* name, char* cmdline)