Re: libX11: Changes to 'master'

2012-05-26 Thread Alan Coopersmith
On 05/ 5/12 10:27 AM, Pander wrote: On 2012-05-05 05:23, Alan Coopersmith wrote: On 04/19/12 11:35 AM, Julien Cristau wrote: On Tue, Apr 10, 2012 at 17:56:47 +0200, Pander wrote: Could you please apply that one already so it is of the list and we discuss the rest below? THanks. Please send

[xf86-video-intel PATCH 2/2] glamor: Fix misspelled xf86GetOptValString and OPTION_ACCEL_METHOD introduced by commit e456291.

2012-05-26 Thread Johannes Obermayr
--- src/intel_glamor.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/intel_glamor.c b/src/intel_glamor.c index 5c0186e..53043dd 100644 --- a/src/intel_glamor.c +++ b/src/intel_glamor.c @@ -39,6 +39,7 @@ #include i915_drm.h #include intel_glamor.h #include uxa.h

[xf86-video-intel PATCH 1/2] sna: Fix misspelled crtc introduced by commit 4094826.

2012-05-26 Thread Johannes Obermayr
--- src/sna/sna_dri.c|2 +- src/sna/sna_video_textured.c |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sna/sna_dri.c b/src/sna/sna_dri.c index a1f671a..632c57d 100644 --- a/src/sna/sna_dri.c +++ b/src/sna/sna_dri.c @@ -493,7 +493,7 @@

Re: [ANNOUNCE] libX11 1.4.99.902

2012-05-26 Thread Alan Coopersmith
On 05/26/12 02:53 PM, Alan Coopersmith wrote: Since so much change has accumulated since the first release candidate, a second one to get some testing before the final release. Please especially check the compose table changes and if you see any issues with them or think we won't want to

[PATCH:libXaw 1/2] Correct order of arguments to XawStackFree()

2012-05-26 Thread Alan Coopersmith
XawStackAlloc() XawStackFree() are macros to automate the process of using a fixed size stack buffer for strings smaller than the buffer size, and allocating/freeing memory for larger strings. XawStackFree is defined in src/Private.h as taking (pointer, stk_buffer) and freeing pointer if it's

[PATCH:libXaw 2/2] Only call XawStackFree if XawStackAlloc was used for allocation

2012-05-26 Thread Alan Coopersmith
In FormParagraph() in TextAction.c, the #if OLDXAW case always uses fixed length buffers, while the !OLDXAW case uses XawStackAlloc XawStackFree to switch to dynamic allocations when the buffers aren't large enough. A couple instances of XawStackFree slipped into the wrong side of the #if checks