Do not crash on empty list in run dialog.

This commit is contained in:
Qball Cow 2015-01-06 11:45:01 +01:00
parent d0f9f6f067
commit 10cdd0e48e
1 changed files with 4 additions and 0 deletions

View File

@ -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 );