mirror of
https://github.com/hsoft/collapseos.git
synced 2025-04-05 06:48:39 +11:00
cfspack: write an empty block after the end, to support empty filesystems
This commit is contained in:
parent
909da5177f
commit
63826c3c72
@ -136,7 +136,10 @@ int main(int argc, char *argv[])
|
||||
// special case: just one file
|
||||
return spitblock(srcpath, basename(srcpath));
|
||||
} else {
|
||||
return spitdir(srcpath, "", pattern);
|
||||
int r = spitdir(srcpath, "", pattern);
|
||||
char emptyblock[BLKSIZE] = {'C', 'F', 'S', 0};
|
||||
fwrite(emptyblock, BLKSIZE, 1, stdout);
|
||||
return r;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user