Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/Remmina/Remmina.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiovanni Panozzo <giovanni@panozzo.it>2014-12-22 17:25:54 +0300
committerGiovanni Panozzo <giovanni@panozzo.it>2014-12-22 17:25:54 +0300
commit92c7b9e7b1cd8dd467516a44da8697028af6eb96 (patch)
treed237c227875a4eb6eef9ad08529be924deec390d
parent18467ef492df84a816f2c97ab80f14b24d72f1e4 (diff)
Fix null pointer use
-rw-r--r--remmina-plugins/rdp/rdp_cliprdr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/remmina-plugins/rdp/rdp_cliprdr.c b/remmina-plugins/rdp/rdp_cliprdr.c
index 43b3f0f1b..6a0a9c5af 100644
--- a/remmina-plugins/rdp/rdp_cliprdr.c
+++ b/remmina-plugins/rdp/rdp_cliprdr.c
@@ -359,8 +359,8 @@ void remmina_rdp_cliprdr_process_data_response(RemminaProtocolWidget* gp, RDP_CB
else
{
if ( !gdk_pixbuf_loader_close(pixbuf, &perr) ) {
- perr = NULL;
remmina_plugin_service->log_printf("[RDP] rdp_cliprdr: gdk_pixbuf_loader_close() returned error %s\n", perr->message);
+ perr = NULL;
}
Stream_Free(s, TRUE);
output = g_object_ref(gdk_pixbuf_loader_get_pixbuf(pixbuf));