X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fgdi%2Fpicexif.cpp;h=1eacc29c4dc979c2f423bd54e912c0ade7a9bb61;hp=50469d4736760ca05b1e69eefab75fd9743a19da;hb=HEAD;hpb=aec5e445292c99eee68512e83337015fcece434d diff --git a/lib/gdi/picexif.cpp b/lib/gdi/picexif.cpp index 50469d4..1eacc29 100644 --- a/lib/gdi/picexif.cpp +++ b/lib/gdi/picexif.cpp @@ -108,7 +108,7 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) strcpy(m_szLastError,"EXIF-Data not found"); if (a != 0xff || fgetc(hFile) != M_SOI) - goto decode_exif_out; + goto decode_exif_out_false; for(;;) { @@ -119,7 +119,7 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) if (SectionsRead >= MAX_SECTIONS) { strcpy(m_szLastError,"Too many sections in jpg file"); - goto decode_exif_out; + goto decode_exif_out_false; } for (a=0;a<7;a++) @@ -130,14 +130,14 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) if (a >= 6) { strcpy(m_szLastError,"too many padding unsigned chars\n"); - goto decode_exif_out; + goto decode_exif_out_false; } } if (marker == 0xff) { strcpy(m_szLastError,"too many padding unsigned chars!"); - goto decode_exif_out; + goto decode_exif_out_false; } Sections[SectionsRead].Type = marker; @@ -150,7 +150,7 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) if (itemlen < 2) { strcpy(m_szLastError,"invalid marker"); - goto decode_exif_out; + goto decode_exif_out_false; } Sections[SectionsRead].Size = itemlen; @@ -158,7 +158,7 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) if (Data == NULL) { strcpy(m_szLastError,"Could not allocate memory"); - goto decode_exif_out; + goto decode_exif_out_false; } Sections[SectionsRead].Data = Data; @@ -170,17 +170,17 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) if (got != itemlen-2) { strcpy(m_szLastError,"Premature end of file?"); - goto decode_exif_out; + goto decode_exif_out_false; } SectionsRead += 1; switch(marker) { case M_SOS: - goto decode_exif_out; + goto decode_exif_out_true; case M_EOI: printf("No image in jpeg!\n"); - goto decode_exif_out; + goto decode_exif_out_false; case M_COM: if (HaveCom) { @@ -227,9 +227,11 @@ bool Cexif::DecodeExif(const char *filename, int Thumb) break; } } + +decode_exif_out_true: ret = true; -decode_exif_out: +decode_exif_out_false: fclose(hFile); return ret; }