summaryrefslogtreecommitdiff
path: root/xprop.c
AgeCommit message (Collapse)Author
2015-09-28Free the data returned by Format_Icons()Eirik Byrkjeflot Anonsen
Signed-off-by: Eirik Byrkjeflot Anonsen <eirik@eirikba.org>
2015-09-28Free the data returned by XGetWindowProperty()Eirik Byrkjeflot Anonsen
Signed-off-by: Eirik Byrkjeflot Anonsen <eirik@eirikba.org>
2015-09-22Free the data returned by XListProperties()Eirik Byrkjeflot Anonsen
Signed-off-by: Eirik Byrkjeflot Anonsen <eirik@eirikba.org>
2015-09-22Free the thunks used by Show_PropEirik Byrkjeflot Anonsen
Signed-off-by: Eirik Byrkjeflot Anonsen <eirik@eirikba.org>
2014-06-03Add -version option to print program versionAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2014-06-03Print which option was in error along with usage messageAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-07-19Fix const conversion warnings from gccAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2013-01-22Add unicode argument to Format_Len_String to reduce code duplicationAlan Coopersmith
Allows us to get rid of a second copy of the code that differed only in the unicode argument passed on to Format_String. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2013-01-22Replace strlen/malloc/memcpy set with strdupAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
2012-02-21Enable setting property of type UTF8_STRING.lolilolicon
Fix "bad format character: u" error for format '8u', e.g.: xprop -root -f _NET_WM_NAME 8u -set _NET_WM_NAME LG3D Signed-off-by: James Cloos <cloos@jhcloos.com>
2011-05-08Make error handlint more robust in Format_Len_UnicodeJeremy Huddleston
xprop.c:1011:2: warning: Function call argument is an uninitialized value memcpy(_formatting_buffer, error, strlen(error)+1); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ xprop.c:1011:36: note: instantiated from: memcpy(_formatting_buffer, error, strlen(error)+1); ^ ~~~~~ Found-by: clang static analysis Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-05-08Fix uninitialize values warnings in static analysisJeremy Huddleston
xprop.c:299:25: warning: Passed-by-value struct argument contains uninitialized data (e.g., field: 'thunk_count') _property_formats = Add_Thunk(_property_formats, t); ^ ~ xprop.c:1394:11: warning: Passed-by-value struct argument contains uninitialized data (e.g., field: 'thunk_count') thunks = Add_Thunk(thunks, t); ^ ~ xprop.c:1581:15: warning: Passed-by-value struct argument contains uninitialized data (e.g., field: 'thunk_count') thunks = Add_Thunk(thunks, t); ^ ~ xprop.c:1962:18: warning: Passed-by-value struct argument contains uninitialized data (e.g., field: 'thunk_count') set_props = Add_Thunk(set_props, t); ^ ~ xprop.c:1952:21: warning: Passed-by-value struct argument contains uninitialized data (e.g., field: 'thunk_count') remove_props = Add_Thunk(remove_props, t); ^ ~ Found-by: clang static analyzer Signed-off-by: Jeremy Huddleston <jeremyhu@apple.com>
2011-02-01Replace Copy_String() with strdup + error checkAlan Coopersmith
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org>
2011-02-01inline Malloc & Realloc functionsAlan Coopersmith
Since stdlib.h versions return void *, remove unneeded casts that the wrappers needed. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Julien Cristau <jcristau@debian.org>
2010-10-06Purge cvs tags.Jesse Adkins
Signed-off-by: Jesse Adkins <jesserayadkins@gmail.com> Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
2009-10-21Print UTF8_STRING type as UTF-8 when locale supports itYang Zhao
Introduces 'u' format character, which behaves like 's', but leaves UTF-8 encoding intact. Property value is checked for UTF-8 validity according to RFC 3629. If invalid, an error string is printed, followed by the string formatted using 's'. ie: PROP(UTF8_STRING) = <Invalid UTF-8 string: Forbidden value> "\374\233" Signed-off-by: Yang Zhao <yang@yangman.ca> Signed-off-by: James Cloos <cloos@jhcloos.com>
2009-04-28Display _NET_WM_ICONs as ASCII art instead of as a big list of integersSøren Sandmann Pedersen
2009-04-21The "visible bit" is called "urgency bit" in the ICCCM 2.0Søren Sandmann Pedersen
2009-02-16Exit cleanly when the target window is destroyed. (#19381)Ben Hutchings
2008-11-26-spy: flush output before waiting for more eventsNeale Pickett
I'm trying to use xprop with the -spy option in a shell script, and since it doesn't flush stdout, it's bunching up lots of modifications into a big chunk of writes.
2007-12-06Select correct client window in WM’s using virtual rootsKim Woelders
From bug 2185¹ When manually selecting a window, xprop finds the top-level window containing the pointer and uses XmuClientWindow to attempt to find a client window having WM_STATE set. In a WM using virtual roots (e.g. enlightenment, desks other than first) this fails beacuse the top-level window is a virtual root, and XmuClientWindow seems to find the first client having WM_STATE set, which only by coincidence will be the one the user intended to select (i.e. containing the pointer). The solution is to descend the window hierarchy at the pointer location to find a window with WM_STATE set. 1] https://bugs.freedesktop.org/show_bug.cgi?id=2185 Signed-off-by: James Cloos <cloos@jhcloos.com>
2007-08-10Sun Bug 4474581: xprop fails in Japanese localeJay Hobson
CJK locales need a much longer string as they include many \xXX entries which expand into /XXXXXXXX entries. Increased the buffer from 10000 to 500000 bytes. Make sure buffer pointer doesn't go negative in _put_char.
2007-08-10Simplify printing of usage messageAlan Coopersmith
2007-08-10Convert old #ifdefs for HAS_WTYPE_H & HAS_WCHAR_H to autoconf checksAlan Coopersmith
2007-08-10Replace sprintf's with snprintf'sAlan Coopersmith
2007-08-10Coverity #905: Handle_Prop_Requests returned without freeing storage "thunks"Alan Coopersmith
2006-07-27remove misleading commentDaniel Stone
2006-07-27handle actual_format_return == 0 (#7647)Branden Robinson
Handle buggy servers which set actual_format_return == 0, instead of aborting.
2004-04-23Merging XORG-CURRENT into trunkrel-0-6-1lg3d-rel-0-7-0lg3d-baseXORG-6_8_1XORG-6_8_0XORG-6_7_99_904XORG-6_7_99_903XORG-6_7_99_902XORG-6_7_99_901XORG-6_7_99_2XORG-6_7_99_1XACE-SELINUX-MERGEEgbert Eich
2004-03-14Importing vendor version xf86-4_4_99_1 on Sun Mar 14 00:26:39 PST 2004xf86-4_4_99_1Egbert Eich
2004-03-03Importing vendor version xf86-4_4_0 on Wed Mar 3 04:09:24 PST 2004xf86-4_4_0Egbert Eich
2004-02-26readding XFree86's cvs IDsxf86-4_3_99_903Egbert Eich
2004-02-26Importing vendor version xf86-4_3_99_903 on Wed Feb 26 01:21:00 PST 2004Egbert Eich
2003-11-25XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330Kaleb Keithley
2003-11-14XFree86 4.3.0.1xf86-4_3_0_1PRE_xf86-4_3_0_1Kaleb Keithley
2003-11-14R6.6 is the Xorg base-lineXORG-MAINKaleb Keithley