mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
fix a few missed initializations
This commit is contained in:
parent
34ec521198
commit
ea36fceec5
1 changed files with 4 additions and 4 deletions
|
@ -359,8 +359,8 @@ pr_obj_get_uninstalled_dtable (progs_t *pr)
|
|||
static void
|
||||
pr_obj_msgSend (progs_t *pr)
|
||||
{
|
||||
pr_id_t *self;
|
||||
pr_sel_t *_cmd;
|
||||
pr_id_t *self = P_POINTER (pr, pr_id_t, 0);
|
||||
pr_sel_t *_cmd = P_POINTER (pr, pr_sel_t, 1);
|
||||
func_t imp;
|
||||
|
||||
if (!self) {
|
||||
|
@ -380,8 +380,8 @@ pr_obj_msgSend (progs_t *pr)
|
|||
static void
|
||||
pr_obj_msgSend_super (progs_t *pr)
|
||||
{
|
||||
pr_id_t *self;
|
||||
pr_sel_t *_cmd;
|
||||
pr_id_t *self = P_POINTER (pr, pr_id_t, 0);
|
||||
pr_sel_t *_cmd = P_POINTER (pr, pr_sel_t, 1);
|
||||
func_t imp;
|
||||
|
||||
if (!self) {
|
||||
|
|
Loading…
Reference in a new issue