summaryrefslogtreecommitdiffstats
path: root/mbbsd/mbbsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/mbbsd.c')
-rw-r--r--mbbsd/mbbsd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mbbsd/mbbsd.c b/mbbsd/mbbsd.c
index d5693304..f9cd01c4 100644
--- a/mbbsd/mbbsd.c
+++ b/mbbsd/mbbsd.c
@@ -268,17 +268,17 @@ talk_request(int sig)
} else {
unsigned char mode0 = currutmp->mode;
char c0 = currutmp->chatid[0];
- void *screen0;
+ screen_backup_t old_screen;
currutmp->mode = 0;
currutmp->chatid[0] = 1;
- screen0=malloc(screen_backupsize(t_lines, big_picture));
- screen_backup(t_lines, big_picture, screen0);
+ old_screen.raw_memory = malloc(screen_backupsize(t_lines, big_picture));
+ screen_backup(t_lines, big_picture, &old_screen);
talkreply();
currutmp->mode = mode0;
currutmp->chatid[0] = c0;
- screen_restore(t_lines, big_picture, screen0);
- free(screen0);
+ screen_restore(t_lines, big_picture, &old_screen);
+ free(old_screen.raw_memory);
redoscr();
}
}