con_toggle_layout: free(tm_dup) outside loop

next
Orestis Floros 2018-03-25 20:48:20 +03:00
parent e19a120961
commit b0997234ab
No known key found for this signature in database
GPG Key ID: E9AD9F32E401E38F
1 changed files with 1 additions and 1 deletions

View File

@ -1917,7 +1917,6 @@ void con_toggle_layout(Con *con, const char *toggle_mode) {
* now let's activate the current layout (next in list) */
if (current_layout_found) {
new_layout = layout;
free(tm_dup);
break;
}
@ -1925,6 +1924,7 @@ void con_toggle_layout(Con *con, const char *toggle_mode) {
current_layout_found = true;
}
}
free(tm_dup);
if (new_layout != L_DEFAULT) {
con_set_layout(con, new_layout);