summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-31 15:37:33 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2023-01-31 15:37:33 +0100
commitf75f05e7b7235a75db161b6a4bd5ee07450c6034 (patch)
treeb4c0392de9ecd7c3b1e21acc4b4448c43e62bbf3 /src
parent9bf2726bce637d151bae133c072ac83e5f2ab514 (diff)
Fix crash in Zenity filechooser with badly formed filter (#665)
Diffstat (limited to 'src')
-rw-r--r--src/Fl_Native_File_Chooser_Kdialog.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Fl_Native_File_Chooser_Kdialog.cxx b/src/Fl_Native_File_Chooser_Kdialog.cxx
index db17d15ed..6fc27f1ec 100644
--- a/src/Fl_Native_File_Chooser_Kdialog.cxx
+++ b/src/Fl_Native_File_Chooser_Kdialog.cxx
@@ -208,6 +208,7 @@ char *Fl_Kdialog_Native_File_Chooser_Driver::parse_filter(const char *f) {
char *lead = new char[r-p];
memcpy(lead, p+1, (r-p)-1); lead[(r-p)-1] = 0;
const char *r2 = strchr(r, '}');
+ if (!r2) return NULL;
char *ends = new char[r2-r];
memcpy(ends, r+1, (r2-r)-1); ends[(r2-r)-1] = 0;
char *ptr;
@@ -248,6 +249,7 @@ void Fl_Kdialog_Native_File_Chooser_Driver::filter(const char *f) {
char *part = strtok_r(f2, "\n", &ptr);
while (part) {
char *p = parse_filter(part);
+ if (!p) break;
_parsedfilt = strapp(_parsedfilt, p);
_parsedfilt = strapp(_parsedfilt, "\n");
delete[] p;