diff options
-rw-r--r-- | linux-user/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/main.c b/linux-user/main.c index 7df24c5a74..fe2cc5817e 100644 --- a/linux-user/main.c +++ b/linux-user/main.c @@ -1933,6 +1933,8 @@ int main(int argc, char **argv) cpu_x86_load_seg(env, R_FS, __USER_DS); cpu_x86_load_seg(env, R_GS, __USER_DS); + /* This hack makes Wine work... */ + env->segs[R_FS].selector = 0; #elif defined(TARGET_ARM) { int i; |