- hm, change this back...

SVN revision: 30587
This commit is contained in:
Dan Sinclair 2007-07-04 03:00:46 +00:00 committed by Dan Sinclair
parent 84c6b57869
commit 1a14377b08
1 changed files with 1 additions and 6 deletions

View File

@ -806,12 +806,7 @@ efreet_mime_shared_mimeinfo_magic_parse(char *data, int size)
case '=':
ptr++;
if (efreet_mime_endianess == EFREET_ENDIAN_LITTLE)
entry->value_len = (*ptr) << 8 | (unsigned short)(*(ptr + 1));
else
entry->value_len = (*(ptr + 1)) << 8 | (unsigned short)(*ptr);
entry->value_len = (*ptr) << 8 | (unsigned short)(*(ptr + 1));
ptr += 2;
entry->value = NEW(1, entry->value_len);