incre
Howard Chu 11 years ago
parent 21b51cb746
commit 1a72b19e26
  1. 4
      libraries/liblmdb/mdb_load.c

@ -128,11 +128,11 @@ static int unhex(unsigned char *c2)
int x, c; int x, c;
x = *c2++ & 0x4f; x = *c2++ & 0x4f;
if (x & 0x40) if (x & 0x40)
x -= 54; x -= 55;
c = x << 4; c = x << 4;
x = *c2 & 0x4f; x = *c2 & 0x4f;
if (x & 0x40) if (x & 0x40)
x -= 54; x -= 55;
c |= x; c |= x;
return c; return c;
} }

Loading…
Cancel
Save