summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-03-22gtk/display: be more paranoid about potentially NULL pointerHEADmasterChristophe Fergeau1-1/+1
If things don't go as expected in gnome_rr_config_ensure_primary (for example we don't find any usable output), we may end up trying to dereference a NULL pointer. It's better to check top_left is not NULL before using it.
2011-03-22gtk: don't attempt to dereference NULL pointerChristophe Fergeau1-2/+4
In spice_channel_handle_migrate there's an explicit check for data being NULL. However, we subsequently dereference it twice even when it can be NULL. Add explicit checks to avoid that.
2011-03-22gtk: remove unused variablesChristophe Fergeau2-12/+1
They were spotted by the clang static analyzer.
2011-03-19gtk/display: fix build with win32Marc-André Lureau3-13/+46
2011-03-19TODO: updateMarc-André Lureau1-1/+2
2011-03-19gtk: fix warning when building without saslMarc-André Lureau1-1/+1
2011-03-19gtk/spicy: fix win32 buildMarc-André Lureau1-1/+1
2011-03-19build: clean up some unused autoconf.acMarc-André Lureau1-61/+8
2011-03-17README: minor sasl dependency updateMarc-André Lureau1-0/+1
2011-03-17gtk/channel: return if pubkey is NULLMarc-André Lureau1-0/+2
Patch suggested by Alon Levy. http://lists.freedesktop.org/archives/spice-devel/2011-March/002943.html
2011-03-17build: fix a copy&paste typoMarc-André Lureau1-1/+1
2011-03-17spicy: change current output resolution in fullscreenMarc-André Lureau1-43/+238
2011-03-17gtk/display: add rr_config_dumpMarc-André Lureau2-0/+11
2011-03-17gtk: import display configuration from gnome-desktopMarc-André Lureau12-10/+5926
2011-03-15gtk: fix crash when clipboard_primary owner changeMarc-André Lureau1-0/+2
Clean up handler when destroyed. /usr/local/stow/virt-manager/share/virt-manager/virt-manager.py:450: Warning: g_type_instance_get_private: assertion `instance != NULL && instance->g_class != NULL' failed gtk.main() Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 0x7ffff7fd4720 (LWP 19098)] 0x00007fffe8881ab2 in get_selection_from_clipboard (d=0x0, cb=0x1df8510) at spice-widget.c:996 996 if (cb == d->clipboard) { (gdb) bt at spice-widget.c:996 0x30f5750, data=0x1ea3000) at spice-widget.c:1114 0x0, n_param_values=2, param_values=0x1e96a90, invocation_hint= 0x7fffffffd280) at gclosure.c:767 detail=0, instance=0x1df8510, emission_return=0x0, instance_and_params= 0x1e96a90) at gsignal.c:3252 instance=<value optimized out>, signal_id=<value optimized out>,
2011-03-15gtk: map-file missig test_common_capabilityMarc-André Lureau1-0/+1
2011-03-02TODO: updateMarc-André Lureau1-1/+3
2011-03-02gtk: add display width/height propertiesMarc-André Lureau1-0/+64
2011-03-01gtk: add multiple selection clipboard sharingMarc-André Lureau8-42/+449
2011-02-22gtk: add SASL supportMarc-André Lureau1-16/+498
2011-02-21build: fix spice-client-gtk-3.0.pc requiresMarc-André Lureau1-1/+1
2011-02-19gtk: add private spice_session_get_{password,host,cert_subject}()Marc-André Lureau3-9/+33
2011-02-19gtk: add error block to spice_channel_recv_link_msg()Marc-André Lureau1-3/+7
2011-02-19gtk: add spice_channel_flush_sasl()Marc-André Lureau1-1/+33
2011-02-19gtk: add spice_channel_read_sasl()Marc-André Lureau2-1/+79
2011-02-19build: add --with-sasl build option (from gtk-vnc)Marc-André Lureau2-1/+56
2011-02-19gtk: share clipboard imagesMarc-André Lureau2-1/+21
2011-02-19gtk: split agent msg to VD_AGENT_MAX_DATA_SIZE if requiredMarc-André Lureau1-11/+24
Fix clipboard sharing of large objects
2011-02-19gtk: add spice_channel_set_common_capability()Marc-André Lureau2-0/+13
2011-02-19gtk: make it easier to debug test_capabilityMarc-André Lureau1-4/+9
2011-02-19gtk: s/g_get_monotonic_clock/g_get_monotonic_timeMarc-André Lureau1-5/+7
2011-02-19common: add spice_channel_test_common_capability()Marc-André Lureau3-2/+31
2011-02-03data: update spicy-for-windows.nsisMarc-André Lureau1-4/+4
2011-02-01gtk/spicy: add --version optionMarc-André Lureau2-12/+42
2011-01-27release 0.5Marc-André Lureau2-2/+12
2011-01-27gtk: fix windows buildMarc-André Lureau3-3/+10
2011-01-27common: fix windows buildMarc-André Lureau2-2/+40
2011-01-27gtk: fix hitting wall / real screen bordersMarc-André Lureau2-27/+40
2011-01-26gtk: add "migration-state" enum to make it easier to track migrationsMarc-André Lureau7-8/+91
2011-01-26gtk: when input channel is not ready, silently drop input eventsMarc-André Lureau4-7/+11
2011-01-25common: sync with upstreamMarc-André Lureau6-14/+16
2011-01-25common: spice_memdup could accept NULLMarc-André Lureau1-0/+4
2011-01-25gtk: spicy: add --host-subject argumentMarc-André Lureau1-6/+15
2011-01-25gtk: move channel verification parameter to sessionMarc-André Lureau11-61/+82
2011-01-25gtk: rename s/spice-channel-enums/spice-glib-enumsMarc-André Lureau6-12/+26
2011-01-25gtk: add pubkey verification on migrationMarc-André Lureau2-4/+12
2011-01-25gtk: make use of common/ssl_verify.cMarc-André Lureau3-215/+61
2011-01-25common: add ssl_verify.c common codeMarc-André Lureau3-0/+514
2011-01-25common: ring.h should include stddef for NULL usageMarc-André Lureau1-0/+2
2011-01-25gtk: add 'pubkey' and 'cert-subject' propertiesMarc-André Lureau2-47/+76