mirror of
https://github.com/lbonn/rofi
synced 2024-11-15 16:38:00 +00:00
Do not crash on empty list in run dialog.
This commit is contained in:
parent
d0f9f6f067
commit
10cdd0e48e
1 changed files with 4 additions and 0 deletions
|
@ -225,6 +225,10 @@ static char ** get_apps ( char **retv, unsigned int *length )
|
|||
if ( config.run_list_command != NULL && config.run_list_command[0] != '\0' ) {
|
||||
retv = get_apps_external ( retv, length );
|
||||
}
|
||||
// No sorting needed.
|
||||
if((*length) == 0) {
|
||||
return retv;
|
||||
}
|
||||
// TODO: check this is still fast enough. (takes 1ms on laptop.)
|
||||
if ( ( *length ) > num_favorites ) {
|
||||
qsort ( &retv[num_favorites], ( *length ) - num_favorites, sizeof ( char* ), sort_func );
|
||||
|
|
Loading…
Reference in a new issue