~ubuntu-branches/ubuntu/precise/tracker/precise

« back to all changes in this revision

Viewing changes to src/tracker-extract/tracker-extract.c

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2011-12-04 06:40:28 UTC
  • mfrom: (4.3.21 sid)
  • Revision ID: package-import@ubuntu.com-20111204064028-cqe0x4f4is6nojla
Tags: 0.12.8-1
* New upstream release.
* Update symbols file for libtracker-extract-0.12-0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
333
333
        }
334
334
#endif /* HAVE_LIBSTREAMANALYZER */
335
335
        else {
 
336
                tracker_extract_info_unref (info);
336
337
                return FALSE;
337
338
        }
338
339
 
362
363
                g_free (mime_used);
363
364
        }
364
365
 
365
 
        *info_out = info;
366
 
 
367
366
        if (items == 0) {
368
367
                g_debug ("No extractor or failed");
 
368
                tracker_extract_info_unref (info);
 
369
                info = NULL;
369
370
        }
370
371
 
 
372
        *info_out = info;
 
373
 
371
374
        return (items > 0);
372
375
}
373
376