Fix memory leak in Haskell binding and simpily example (#86)

This commit is contained in:
Ziyao 2024-03-18 21:46:51 +08:00 committed by GitHub
parent 4a69266256
commit 9981a9d1e4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -327,7 +327,7 @@ import Ruapu
main = do
Ruapu.init
Ruapu.supports "mmx" >>= putStrLn . show
Ruapu.rua >>= foldl (\m x -> m >> putStrLn x) (return ())
Ruapu.rua >>= sequence_ . map putStrLn
```
</td></tr>
</table>

View File

@ -3,7 +3,7 @@
module Ruapu where
import Foreign
import Foreign.C.String (CString, newCAString, peekCAString)
import Foreign.C.String (CString, withCAString, peekCAString)
foreign import ccall "ruapu.c ruapu_init"
init :: IO ()
@ -15,7 +15,7 @@ foreign import ccall "ruapu.c ruapu_rua"
cRua :: IO (Ptr CString)
supports :: String -> IO Bool
supports xs = (newCAString xs) >>= cSupports
supports = flip withCAString cSupports
rua :: IO [String]
rua = cRua >>= peekArray0 nullPtr >>= mapM peekCAString