-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dynamic memory allocation for path table was corrected
- Loading branch information
Showing
3 changed files
with
11 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* | ||
* ebiso.c | ||
* | ||
* Version: 0.1.2 | ||
* Version: 0.1.3 | ||
* | ||
* Release date: 20.10.2015 | ||
* Release date: 21.10.2015 | ||
* | ||
* Copyright 2015 Vladimir (sodoma) Gozora <[email protected]> | ||
* | ||
|
@@ -224,7 +224,7 @@ int main(int argc, char *argv[]) { | |
printf("%-5s %-4s %-55s %-11s %-3s %-9s %-5s %-7s %-12s %-5s %-11s %-6s %-8s %-7s\n", \ | ||
"Level", "PID", "Name", "Size", "ID", "LBA", "Flag", "Blocks", "conf_name", \ | ||
"Len", "ISO9660_len", "CE_LBA", "Full_len", "CE_off"); | ||
for (i = 0; i <= 8; i++) | ||
for (i = 0; i <= 128; i++) | ||
disp_level(list, i); | ||
break; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
/* | ||
* ebiso.h | ||
* | ||
* Version: 0.1.2 | ||
* Version: 0.1.3 | ||
* | ||
* Release date: 20.10.2015 | ||
* Release date: 21.10.2015 | ||
* | ||
* Copyright 2015 Vladimir (sodoma) Gozora <[email protected]> | ||
* | ||
|
@@ -33,7 +33,7 @@ | |
#include <getopt.h> | ||
|
||
#define PROGNAME "ebiso" | ||
#define VERSION "0.1.2" | ||
#define VERSION "0.1.3" | ||
|
||
#ifdef DEBUG | ||
static void disp_level(struct file_list_t *list_to_display, int level); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters