Fix segfault when pressing PrintScr without a selection

master
Rafa Garcia Gallego 10 years ago committed by Roberto E. Vargas Caballero
parent 45b808b88e
commit 672e4e4b03

@ -2263,9 +2263,10 @@ tdumpsel(void)
{
char *ptr;
ptr = getsel();
tprinter(ptr, strlen(ptr));
free(ptr);
if((ptr = getsel())) {
tprinter(ptr, strlen(ptr));
free(ptr);
}
}
void

Loading…
Cancel
Save