From 086019e86cb4328a68b228770d3c0ec91c853794 Mon Sep 17 00:00:00 2001 From: Kevin Rosenberg Date: Sat, 6 Feb 2010 20:22:27 -0700 Subject: [PATCH 1/1] Add changes for internationalized strings missed on last commit. --- uffi/clsql-uffi.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/uffi/clsql-uffi.lisp b/uffi/clsql-uffi.lisp index e08c157..03ce074 100644 --- a/uffi/clsql-uffi.lisp +++ b/uffi/clsql-uffi.lisp @@ -141,10 +141,10 @@ (uffi:convert-from-foreign-usb8 char-ptr length) (error "Can't return blob since length is not specified."))) (t - ;; sb-unicode still broken with converting with length, assume + ;; sb-unicode doesn't work converting with length, assume ;; that string is null terminated #+sb-unicode - (uffi:convert-from-foreign-string char-ptr :locale :none) + (uffi:convert-from-foreign-string char-ptr) #-sb-unicode (if length (uffi:convert-from-foreign-string char-ptr -- 2.34.1