mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-03 16:01:38 +00:00
[ruamoko] Return nil for %@ printf format
Fixes a segfault when attempting to print a nil object.
This commit is contained in:
parent
5f75616655
commit
3a9148a3e0
1 changed files with 3 additions and 0 deletions
|
@ -1470,6 +1470,9 @@ rua_obj_set_error_handler (progs_t *pr, void *data)
|
|||
static const char *
|
||||
rua_at_handler (progs_t *pr, pr_ptr_t at_param, void *_probj)
|
||||
{
|
||||
if (!at_param) {
|
||||
return "nil";
|
||||
}
|
||||
probj_t *probj = _probj;
|
||||
pr_id_t *obj = &G_STRUCT (pr, pr_id_t, at_param);
|
||||
pr_class_t *class = &G_STRUCT (pr, pr_class_t, obj->class_pointer);
|
||||
|
|
Loading…
Reference in a new issue