diff options
Diffstat (limited to 'src/globals.c')
-rw-r--r-- | src/globals.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/globals.c b/src/globals.c index 233f2ae..f81d7ad 100644 --- a/src/globals.c +++ b/src/globals.c @@ -108,8 +108,7 @@ set_nselection (char *txt, int len) int i; /* Update the selection structure */ - if (selection.text != NULL) - free(selection.text); + free (selection.text); /* Copy the string by hand. */ selection.text = malloc(len+1); @@ -125,8 +124,7 @@ void set_selection (char *txt) { /* Update the selection structure */ - if (selection.text != NULL) - free(selection.text); + free (selection.text); selection.text = xstrdup (txt); selection.len = strlen (txt); |