Skip to content

Commit

Permalink
Merge branch 'gemini' into guppy
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Oct 28, 2023
2 parents 6f59a70 + 0dcaf33 commit 53e5068
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions com.github.dimkr.gplaces.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
<developer_name>Dima Krasner</developer_name>

<releases>
<release date="2023-10-27" version="0.17.12">
<description>
<ul>
<li>Fix for crash handler ends with %u</li>
</ul>
</description>
</release>

<release date="2023-09-09" version="0.17.11">
<description>
<ul>
Expand Down
2 changes: 1 addition & 1 deletion gplaces.c
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ static pid_t start_handler(const char *handler, const char *filename, char *comm
}

for (i = 0; *handler && i < length - 1; ) {
if (handler[0] == '%' && handler[i] != '\0') {
if (handler[0] == '%' && handler[1] != '\0') {
const char *append = "";
switch (handler[1]) {
case '%': append = "%"; break;
Expand Down

0 comments on commit 53e5068

Please sign in to comment.