Browse Source

clipcopy: no need to check for free(NULL), set to NULL after free

master
Hiltjo Posthuma 6 years ago
parent
commit
5345db3c9b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      x.c

+ 2
- 2
x.c View File

@ -245,8 +245,8 @@ clipcopy(const Arg *dummy)
{
Atom clipboard;
if (xsel.clipboard != NULL)
free(xsel.clipboard);
free(xsel.clipboard);
xsel.clipboard = NULL;
if (xsel.primary != NULL) {
xsel.clipboard = xstrdup(xsel.primary);


Loading…
Cancel
Save