[Qemu-devel] [PATCH] [REPOST] Simplily linux-user/path.c

2007-03-25 Thread Kirill A. Shutemov
Fixed version of patch in the attaechment. Please, comment. signature.asc Description: Digital signature

Re: [Qemu-devel] [PATCH] [REPOST] Simplily linux-user/path.c

2007-03-20 Thread Kirill A. Shutemov
On [Fri, 23.02.2007 16:58], Thiemo Seufer wrote: Kirill A. Shutemov wrote: Fixed version of the patch in the attacment. Please, comment. [snip] /* Look for path in emulation dir, otherwise return name. */ const char *path(const char *name) { +char *newname = (char *)

Re: [Qemu-devel] [PATCH] [REPOST] Simplily linux-user/path.c

2007-02-23 Thread Thiemo Seufer
Kirill A. Shutemov wrote: Fixed version of the patch in the attacment. Please, comment. [snip] /* Look for path in emulation dir, otherwise return name. */ const char *path(const char *name) { +char *newname = (char *) alloca(strlen(pref)+strlen(name)+1); +struct stat buf;

[Qemu-devel] [PATCH] [REPOST] Simplily linux-user/path.c

2007-02-19 Thread Kirill A. Shutemov
Fixed version of the patch in the attacment. Please, comment. --- qemu-0.8.2/linux-user/path.c.orig 2006-12-21 17:16:03 +0200 +++ qemu-0.8.2/linux-user/path.c2006-12-21 17:14:08 +0200 @@ -1,147 +1,37 @@ /* Code to mangle pathnames into those matching a given prefix. eg.