- a few minor bug fixes related to code warnings

- code cleanup based on additional gcc warnings
- enabled additional gcc compiler warnings
This commit is contained in:
Mark Vejvoda
2013-11-19 06:14:06 +00:00
parent 642a26bdb5
commit 9268aaf279
81 changed files with 675 additions and 626 deletions

View File

@@ -162,6 +162,7 @@ inline static void get_random_info(char seed[16]) {
if (NULL != fp) {
size_t bytes = fread(seed,sizeof(char),16,fp);
if(bytes <= 0) { }
fclose(fp);
return;
}