-
This causes equal tags to return as non equal
here is the fix:
id3_lookup_frame(id3v2_frame_list *list, const char *field, const int pos)
{
int cur = 0;
if(!list || !field) return NULL;
do
{
if(!strncmp(list->data->frame_id, field,4)) // this is the FIX
{
if(cur == pos) return list->data;
cur++;
}
} while((list = list->next));
return NULL;
}.
2007-02-16 00:23:58 UTC by dstavy
-
The GNU Multiple Precision Arithmetic Library contains a libmp.so.
2007-01-04 13:29:19 UTC by nobody
-
lugburg committed patchset 32 of module mplib to the mplib CVS repository, changing 1 files.
2006-06-14 11:31:08 UTC by lugburg
-
lugburg committed patchset 31 of module mplib to the mplib CVS repository, changing 2 files.
2006-03-19 13:22:13 UTC by lugburg
-
lugburg committed patchset 30 of module mplib to the mplib CVS repository, changing 1 files.
2006-03-19 13:21:11 UTC by lugburg
-
lugburg committed patchset 29 of module mplib to the mplib CVS repository, changing 1 files.
2006-03-19 11:25:58 UTC by lugburg
-
lugburg committed patchset 28 of module mplib to the mplib CVS repository, changing 1 files.
2006-03-19 11:24:32 UTC by lugburg
-
mkowalczuk committed patchset 27 of module mplib to the mplib CVS repository, changing 1 files.
2006-02-20 15:40:23 UTC by mkowalczuk
-
mkowalczuk committed patchset 26 of module mplib to the mplib CVS repository, changing 1 files.
2006-02-20 15:39:06 UTC by mkowalczuk
-
lugburg committed patchset 25 of module mplib to the mplib CVS repository, changing 26 files.
2006-02-06 20:10:50 UTC by lugburg