Displaying 1 result from an estimated 1 matches for "getword".
Did you mean:
  netword
  
2004 Sep 12
0
Help needed: division by zero in winword etc.
...in wine).  In
another program like "Camel join" it quits as soon as
i go up to the level of "my computer" with a message
"didivsion by zero in ReadFATSuperblock. I was able to
track the problem down to the following lines in
volume.c (starting from line 502)
      nsect -= GETWORD(buff, 0x0e) + buff[0x10] * sz +
            (GETWORD(buff, 0x11) * 32 + (GETWORD(buff,
0x0b) - 1)) / GETWORD(buff, 0x0b);
        nclust = nsect / buff[0x0d];
when i change  these into this:
 nsect -= GETWORD(buff, 0x0e) + buff[0x10] * sz +
            (GETWORD(buff, 0x11) * 32 + (GETWORD(buff,...