fixed bug in ypsilon-compat where char** pointers were not
initialized properly in 64-bit. Thanks to Tristan Ravitch.
This commit is contained in:
parent
810fe75fa1
commit
2924c91788
|
@ -120,8 +120,8 @@
|
||||||
(cond
|
(cond
|
||||||
[(= i n) p]
|
[(= i n) p]
|
||||||
[else
|
[else
|
||||||
(pointer-set-c-int! p (* i pointer-size)
|
(pointer-set-c-pointer! p (* i pointer-size)
|
||||||
(pointer->integer (check-char* who (vector-ref x i))))
|
(check-char* who (vector-ref x i)))
|
||||||
(f (+ i 1))]))))]
|
(f (+ i 1))]))))]
|
||||||
[else (die who "not a char**" x)]))
|
[else (die who "not a char**" x)]))
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1765
|
1766
|
||||||
|
|
Loading…
Reference in New Issue