summaryrefslogtreecommitdiffstats
path: root/Action.c
diff options
context:
space:
mode:
authorNathan Scott <natoscott@users.noreply.github.com>2021-08-17 15:42:33 +1000
committerGitHub <noreply@github.com>2021-08-17 15:42:33 +1000
commit3f727d4720c8df38789dea246a5217a5412ebbcf (patch)
tree0b7093afd5d7846f86b1e317c0022130ca66e42e /Action.c
parentfefff80631e86f0296a2621a3699b16de60b86c6 (diff)
parentd5ff5c48a889c1eab6e3792d3f5ca1566cf05491 (diff)
Merge pull request #747 from natoscott/coverity
Coverity scan updates (minor)
Diffstat (limited to 'Action.c')
-rw-r--r--Action.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/Action.c b/Action.c
index 5d774587..a63b30e4 100644
--- a/Action.c
+++ b/Action.c
@@ -174,8 +174,9 @@ static Htop_Reaction actionSetSortColumn(State* st) {
char* name = NULL;
if (fields[i] >= LAST_PROCESSFIELD) {
DynamicColumn* column = Hashtable_get(dynamicColumns, fields[i]);
- if (column)
- name = xStrdup(column->caption ? column->caption : column->name);
+ if (!column)
+ continue;
+ name = xStrdup(column->caption ? column->caption : column->name);
} else {
name = String_trim(Process_fields[fields[i]].name);
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy