Skip to content

Commit

Permalink
RSS wall: do not display empty idle message
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastien Bourdeauducq committed May 3, 2011
1 parent 62900f3 commit a7caf21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/rsswall.c
Expand Up @@ -326,7 +326,8 @@ static rtems_task rsswall_task(rtems_task_argument argument)
free(last_entry);
empty_count++;
if(empty_count == rsswall_idlep) {
osd_event(rsswall_idle);
if((rsswall_idle != NULL) && (rsswall_idle[0] != 0))
osd_event(rsswall_idle);
empty_count = 0;
}
}
Expand Down

0 comments on commit a7caf21

Please sign in to comment.