/pidgin/main: 5fa3f2bc69d7: Fix TALOS-CAN-0128
Andrew Victor
andrew.victor at mxit.com
Mon Jun 20 20:09:56 EDT 2016
Changeset: 5fa3f2bc69d7918d1e537e780839df63d5df59aa
Author: Andrew Victor <andrew.victor at mxit.com>
Date: 2016-06-02 15:04 -0500
Branch: release-2.x.y
URL: https://hg.pidgin.im/pidgin/main/rev/5fa3f2bc69d7
Description:
Fix TALOS-CAN-0128
diffstat:
libpurple/protocols/mxit/splashscreen.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (21 lines):
diff --git a/libpurple/protocols/mxit/splashscreen.c b/libpurple/protocols/mxit/splashscreen.c
--- a/libpurple/protocols/mxit/splashscreen.c
+++ b/libpurple/protocols/mxit/splashscreen.c
@@ -93,7 +93,7 @@ void splash_remove(struct MXitSession* s
purple_debug_info(MXIT_PLUGIN_ID, "Removing splashId: '%s'\n", splashId);
/* Delete stored splash image */
- filename = g_strdup_printf("%s" G_DIR_SEPARATOR_S "mxit" G_DIR_SEPARATOR_S "%s.png", purple_user_dir(), splashId);
+ filename = g_strdup_printf("%s" G_DIR_SEPARATOR_S "mxit" G_DIR_SEPARATOR_S "%s.png", purple_user_dir(), purple_escape_filename(splashId));
g_unlink(filename);
g_free(filename);
@@ -179,7 +179,7 @@ void splash_display(struct MXitSession*
purple_debug_info(MXIT_PLUGIN_ID, "Display Splash: '%s'\n", splashId);
/* Load splash-screen image from file */
- filename = g_strdup_printf("%s" G_DIR_SEPARATOR_S "mxit" G_DIR_SEPARATOR_S "%s.png", purple_user_dir(), splashId);
+ filename = g_strdup_printf("%s" G_DIR_SEPARATOR_S "mxit" G_DIR_SEPARATOR_S "%s.png", purple_user_dir(), purple_escape_filename(splashId));
if (g_file_get_contents(filename, &imgdata, &imglen, NULL)) {
char buf[128];
More information about the Commits
mailing list