1
0
forked from GitHub/gf-core

fix in the Haskell binding: functionType should throw error if the function is not defined

This commit is contained in:
krasimir
2016-05-30 17:15:09 +00:00
parent dc67018ab7
commit 3fe2347bfd

View File

@@ -149,7 +149,9 @@ functionType p fn =
withGuPool $ \tmpPl -> do
c_fn <- newUtf8CString fn tmpPl
c_type <- pgf_function_type (pgf p) c_fn
peekType c_type
if c_type == nullPtr
then throwIO (PGFError ("Function '"++fn++"' is not defined"))
else peekType c_type
where
peekType c_type = do
cid <- (#peek PgfType, cid) c_type >>= peekUtf8CString