NULL ptr check

This commit is contained in:
Brian 2007-04-09 19:07:13 -06:00
parent 7b2626f7d8
commit 0109b47106

View file

@ -1348,7 +1348,7 @@ _slang_gen_function_call_name(slang_assemble_ctx *A, const char *name,
* Try adapting the parameters.
*/
fun = _slang_first_function(A->space.funcs, name);
if (!_slang_adapt_call(oper, fun, &A->space, A->atoms, A->log)) {
if (!fun || !_slang_adapt_call(oper, fun, &A->space, A->atoms, A->log)) {
slang_info_log_error(A->log, "Function '%s' not found (check argument types)", name);
return NULL;
}