mirror of
https://github.com/MidnightCommander/mc
synced 2025-04-04 06:02:52 +03:00
* cons.saver.c: Use SEEK_SET instead of 0 in lseek().
* view.c: Likewise.
This commit is contained in:
parent
17ceeead44
commit
b8f676ec41
@ -1,5 +1,8 @@
|
|||||||
2002-07-29 Pavel Roskin <proski@gnu.org>
|
2002-07-29 Pavel Roskin <proski@gnu.org>
|
||||||
|
|
||||||
|
* cons.saver.c: Use SEEK_SET instead of 0 in lseek().
|
||||||
|
* view.c: Likewise.
|
||||||
|
|
||||||
* main.c (do_execute): Add newline after "Press any key to
|
* main.c (do_execute): Add newline after "Press any key to
|
||||||
continue".
|
continue".
|
||||||
|
|
||||||
|
@ -192,13 +192,13 @@ static int detect_console (char *tty_name)
|
|||||||
|
|
||||||
static void save_console (void)
|
static void save_console (void)
|
||||||
{
|
{
|
||||||
lseek (vcs_fd, 0, 0);
|
lseek (vcs_fd, 0, SEEK_SET);
|
||||||
read (vcs_fd, buffer, buffer_size);
|
read (vcs_fd, buffer, buffer_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void restore_console (void)
|
static void restore_console (void)
|
||||||
{
|
{
|
||||||
lseek (vcs_fd, 0, 0);
|
lseek (vcs_fd, 0, SEEK_SET);
|
||||||
write (vcs_fd, buffer, buffer_size);
|
write (vcs_fd, buffer, buffer_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -504,7 +504,7 @@ static char *load_view_file (WView *view, int fd)
|
|||||||
|
|
||||||
view->data = (unsigned char*) g_malloc (view->s.st_size);
|
view->data = (unsigned char*) g_malloc (view->s.st_size);
|
||||||
if (view->data == NULL
|
if (view->data == NULL
|
||||||
|| mc_lseek(view->file,0,0) != 0
|
|| mc_lseek(view->file, 0, SEEK_SET) != 0
|
||||||
|| mc_read(view->file, view->data, view->s.st_size) != view->s.st_size){
|
|| mc_read(view->file, view->data, view->s.st_size) != view->s.st_size){
|
||||||
if (view->data != NULL)
|
if (view->data != NULL)
|
||||||
g_free (view->data);
|
g_free (view->data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user