fix a few missed initializations

This commit is contained in:
Bill Currie 2002-05-22 21:45:15 +00:00
parent 34ec521198
commit ea36fceec5

View file

@ -359,8 +359,8 @@ pr_obj_get_uninstalled_dtable (progs_t *pr)
static void static void
pr_obj_msgSend (progs_t *pr) pr_obj_msgSend (progs_t *pr)
{ {
pr_id_t *self; pr_id_t *self = P_POINTER (pr, pr_id_t, 0);
pr_sel_t *_cmd; pr_sel_t *_cmd = P_POINTER (pr, pr_sel_t, 1);
func_t imp; func_t imp;
if (!self) { if (!self) {
@ -380,8 +380,8 @@ pr_obj_msgSend (progs_t *pr)
static void static void
pr_obj_msgSend_super (progs_t *pr) pr_obj_msgSend_super (progs_t *pr)
{ {
pr_id_t *self; pr_id_t *self = P_POINTER (pr, pr_id_t, 0);
pr_sel_t *_cmd; pr_sel_t *_cmd = P_POINTER (pr, pr_sel_t, 1);
func_t imp; func_t imp;
if (!self) { if (!self) {