diff options
author | Adam Jackson <ajax@benzedrine.nwnk.net> | 2006-08-23 14:38:34 -0400 |
---|---|---|
committer | Adam Jackson <ajax@benzedrine.nwnk.net> | 2006-08-23 14:38:34 -0400 |
commit | 9f2a108051aad9b024ab737b45fc12290a113e37 (patch) | |
tree | 1b14f69c9905b30d3f9e1d344739670ca9587af6 /hw/vfb | |
parent | a1ac0440bba690368aa4226468ce571be1a09d95 (diff) |
Make 'Xvfb -render' also disable Composite, lest we segfault on startup.
Diffstat (limited to 'hw/vfb')
-rw-r--r-- | hw/vfb/InitOutput.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hw/vfb/InitOutput.c b/hw/vfb/InitOutput.c index b8253f607..a2d866118 100644 --- a/hw/vfb/InitOutput.c +++ b/hw/vfb/InitOutput.c @@ -364,6 +364,9 @@ ddxProcessArgument(int argc, char *argv[], int i) if (strcmp (argv[i], "-render") == 0) /* -render */ { Render = FALSE; +#ifdef COMPOSITE + noCompositeExtension = TRUE; +#endif return 1; } |