Giter Site home page Giter Site logo

Comments (1)

dewhisna avatar dewhisna commented on July 17, 2024

I think this is related to the crash I'm seeing -- also on an Ubuntu 14.04 LTS Trusty Tahr environment. What I'm finding is that it crashes for me if the two files aren't the same length. The crash usually happens when scrolling down, usually a page-down operation, and you reach the point where it runs out of content for one of the two files.

To work around this issue, I simply cat on some zero bytes from /dev/zero to a temp copy of the shorter file. For example, suppose file1.bin is 1234 bytes and file2.bin is 2345 bytes, I'll add 1111 extra 0x00 bytes to file1.bin in a temporary copy with something like:

dd if=/dev/zero bs=1 count=1111 | cat file1.bin - >file1_temp.bin
vbindiff file1_temp.bin file2.bin

So far, it hasn't crashed on me if they are the same size. The only real nuisance is having to calculate how many extra bytes to add and delete the temporary when done. I suppose I could script that, but eh...

PS. Yes, thanks, Christopher, for VBinDiff -- it's a very handy little tool.

from vbindiff.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.