We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i++ in https://github.com/openSUSE/imagewriter/blob/531d36b/Platform.cpp#L112 causes the end of the input file not to be written in some cases.
How to reproduce:
# write 3 MB plus 1 byte of zeroes sudo dd if=/dev/zero of=/dev/sdb bs=3145729 count=1 # create 3 MB containing \xaa\x55 and 1 byte with character a printf %3145728sa | sed 's/ /\xaa\x55/g' > a.iso imagewriter -d /dev/sdb -f a.iso # read the byte after 3 MB sudo dd status=none if=/dev/sdb bs=1 skip=3145728 count=1
Expected result: a The actual result is a null byte.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i++ in https://github.com/openSUSE/imagewriter/blob/531d36b/Platform.cpp#L112 causes the end of the input file not to be written in some cases.
How to reproduce:
Expected result: a
The actual result is a null byte.
The text was updated successfully, but these errors were encountered: