Fix error in epg_hash routine.
This commit is contained in:
parent
aa133bc7df
commit
f8c18e24ee
1 changed files with 1 additions and 1 deletions
|
@ -1931,7 +1931,7 @@ void epg_query_sort(epg_query_result_t *eqr)
|
|||
char *epg_hash ( const char *t, const char *s, const char *d )
|
||||
{
|
||||
if ( d && strlen(d) > 10 ) return md5sum(d);
|
||||
if ( s && strlen(d) > 10 ) return md5sum(d);
|
||||
if ( s && strlen(s) > 10 ) return md5sum(s);
|
||||
if ( t ) return md5sum(t);
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue