mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 07:11:41 +00:00
[qwaq] Cope with functions that don't have locals
In this case, .ctor functions.
This commit is contained in:
parent
1d5058d267
commit
118fba8df5
2 changed files with 2 additions and 2 deletions
|
@ -482,7 +482,7 @@ qdb_get_local_defs (progs_t *pr)
|
|||
pr_auxfunction_t *auxfunc = PR_Debug_MappedAuxFunction (tpr, fnum);
|
||||
|
||||
R_INT (pr) = 0;
|
||||
if (auxfunc) {
|
||||
if (auxfunc && auxfunc->num_locals) {
|
||||
pr_def_t *defs = PR_Debug_LocalDefs (tpr, auxfunc);
|
||||
__auto_type qdefs
|
||||
= (qdb_def_t *) PR_Zone_Malloc (pr,
|
||||
|
|
|
@ -58,7 +58,7 @@
|
|||
if (aux_func) {
|
||||
defs = qdb_get_local_defs (target, fnum);
|
||||
}
|
||||
if (func) {
|
||||
if (func && func.local_size) {
|
||||
data = obj_malloc (func.local_size);
|
||||
}
|
||||
return self;
|
||||
|
|
Loading…
Reference in a new issue