Fix segfault when pressing PrintScr without a selection
This commit is contained in:
parent
45b808b88e
commit
672e4e4b03
1 changed files with 4 additions and 3 deletions
3
st.c
3
st.c
|
@ -2263,10 +2263,11 @@ tdumpsel(void)
|
||||||
{
|
{
|
||||||
char *ptr;
|
char *ptr;
|
||||||
|
|
||||||
ptr = getsel();
|
if((ptr = getsel())) {
|
||||||
tprinter(ptr, strlen(ptr));
|
tprinter(ptr, strlen(ptr));
|
||||||
free(ptr);
|
free(ptr);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
tdumpline(int n) {
|
tdumpline(int n) {
|
||||||
|
|
Loading…
Reference in a new issue