Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16dcce2 commit 50bbc56Copy full SHA for 50bbc56
1 file changed
Tools/build/umarshal.py
@@ -125,10 +125,10 @@ def r_long64(self) -> int:
125
x |= buf[1] << 8
126
x |= buf[2] << 16
127
x |= buf[3] << 24
128
- x |= buf[1] << 32
129
- x |= buf[1] << 40
130
- x |= buf[1] << 48
131
- x |= buf[1] << 56
+ x |= buf[4] << 32
+ x |= buf[5] << 40
+ x |= buf[6] << 48
+ x |= buf[7] << 56
132
x |= -(x & (1<<63)) # Sign-extend
133
return x
134
0 commit comments