* extfs.c (extfs_open_archive): Fixes bug in extfs, which showed
'Inconsistent extfs archive' on small archives and diffs. QNX 6.x (QNX Neutrino) specific
Этот коммит содержится в:
родитель
05cea9cabf
Коммит
312da833ff
@ -1,3 +1,11 @@
|
||||
2004-09-17 Pavel S. Shirshov <pavelsh@mail.ru>
|
||||
|
||||
* extfs.c (extfs_open_archive): Fixes bug in extfs, which showed
|
||||
'Inconsistent extfs archive' on small archives and diffs.
|
||||
QNX 6.x (QNX Neutrino) specific
|
||||
|
||||
Based on patch from Dmitry Alexeyev <dmi_a@qnx.org.ru>
|
||||
|
||||
2004-09-06 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* fish.c (fish_file_store): Call got_interrupt() instead of testing
|
||||
@ -13,7 +21,7 @@
|
||||
to system/open that spawn a shell.
|
||||
* direntry.c (vfs_s_find_entry_tree): Make "size" size_t.
|
||||
|
||||
Based on patches from Jakub Jelinek <jakub@redhat.com>
|
||||
Based on patches from Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
2004-09-02 Andrew V. Samoilov <sav@bcs.zp.ua>
|
||||
|
||||
|
@ -254,7 +254,10 @@ extfs_open_archive (int fstype, const char *name, struct archive **pparc)
|
||||
g_free(local_name);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
#ifdef ___QNXNTO__
|
||||
setvbuf (result, NULL, _IONBF, 0);
|
||||
#endif
|
||||
|
||||
current_archive = g_new (struct archive, 1);
|
||||
current_archive->fstype = fstype;
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user