summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuPageViewNormal.m
diff options
context:
space:
mode:
authorMatt Holgate <matt@emobix.co.uk>2014-06-26 11:11:52 +0100
committerMatt Holgate <matt@emobix.co.uk>2014-06-26 11:58:35 +0100
commitca43cfebcad7fef14b954e9b300e5bf818bfe4c5 (patch)
treebbcdebe6d1488fda59e6d08d7087c0cf161f8493 /platform/ios/Classes/MuPageViewNormal.m
parente8f0394761e24ad1cdb143aa40e5594e93a97f0b (diff)
downloadmupdf-ca43cfebcad7fef14b954e9b300e5bf818bfe4c5.tar.xz
Fix various Xcode analyzer warnings.
Most were pretty harmless, and were addressed by renaming functions to match the Core Foundation naming conventions, but there was one actual memory leak, and some potential uses of uninitialised data.
Diffstat (limited to 'platform/ios/Classes/MuPageViewNormal.m')
-rw-r--r--platform/ios/Classes/MuPageViewNormal.m20
1 files changed, 11 insertions, 9 deletions
diff --git a/platform/ios/Classes/MuPageViewNormal.m b/platform/ios/Classes/MuPageViewNormal.m
index 1cf2023d..a339df45 100644
--- a/platform/ios/Classes/MuPageViewNormal.m
+++ b/platform/ios/Classes/MuPageViewNormal.m
@@ -13,7 +13,7 @@
static UIImage *newImageWithPixmap(fz_pixmap *pix, CGDataProviderRef cgdata)
{
- CGImageRef cgimage = newCGImageWithPixmap(pix, cgdata);
+ CGImageRef cgimage = CreateCGImageWithPixmap(pix, cgdata);
UIImage *image = [[UIImage alloc] initWithCGImage: cgimage scale: screenScale orientation: UIImageOrientationUp];
CGImageRelease(cgimage);
return image;
@@ -45,7 +45,6 @@ static NSArray *enumerateWidgetRects(fz_document *doc, fz_page *page)
static NSArray *enumerateAnnotations(fz_document *doc, fz_page *page)
{
- pdf_document *idoc = pdf_specifics(doc);
fz_annot *annot;
NSMutableArray *arr = [NSMutableArray arrayWithCapacity:10];
@@ -190,6 +189,9 @@ static void addMarkupAnnot(fz_document *doc, fz_page *page, int type, NSArray *r
line_thickness = LINE_THICKNESS;
line_height = STRIKE_HEIGHT;
break;
+
+ default:
+ return;
}
fz_var(quadpts);
@@ -316,7 +318,7 @@ static void deleteAnnotation(fz_document *doc, fz_page *page, int index)
static int setFocussedWidgetText(fz_document *doc, fz_page *page, const char *text)
{
- int accepted;
+ int accepted = 0;
fz_try(ctx)
{
@@ -340,7 +342,7 @@ static int setFocussedWidgetText(fz_document *doc, fz_page *page, const char *te
static int setFocussedWidgetChoice(fz_document *doc, fz_page *page, const char *text)
{
- int accepted;
+ int accepted = 0;
fz_try(ctx)
{
@@ -365,7 +367,7 @@ static int setFocussedWidgetChoice(fz_document *doc, fz_page *page, const char *
static fz_display_list *create_page_list(fz_document *doc, fz_page *page)
{
- fz_display_list *list;
+ fz_display_list *list = NULL;
fz_device *dev = NULL;
fz_var(dev);
@@ -389,7 +391,7 @@ static fz_display_list *create_page_list(fz_document *doc, fz_page *page)
static fz_display_list *create_annot_list(fz_document *doc, fz_page *page)
{
- fz_display_list *list;
+ fz_display_list *list = NULL;
fz_device *dev = NULL;
fz_var(dev);
@@ -891,7 +893,7 @@ static void updatePixmap(fz_document *doc, fz_display_list *page_list, fz_displa
CGRect rect = (CGRect){{0.0, 0.0},{pageSize.width * scale.width, pageSize.height * scale.height}};
image_pix = renderPixmap(doc, page_list, annot_list, pageSize, self.bounds.size, rect, 1.0);
CGDataProviderRelease(imageData);
- imageData = wrapPixmap(image_pix);
+ imageData = CreateWrappedPixmap(image_pix);
UIImage *image = newImageWithPixmap(image_pix, imageData);
widgetRects = enumerateWidgetRects(doc, page);
[self loadAnnotations];
@@ -1060,7 +1062,7 @@ static void updatePixmap(fz_document *doc, fz_display_list *page_list, fz_displa
printf("render tile\n");
tile_pix = renderPixmap(doc, page_list, annot_list, pageSize, screenSize, viewFrame, scale);
CGDataProviderRelease(tileData);
- tileData = wrapPixmap(tile_pix);
+ tileData = CreateWrappedPixmap(tile_pix);
UIImage *image = newImageWithPixmap(tile_pix, tileData);
dispatch_async(dispatch_get_main_queue(), ^{
@@ -1234,7 +1236,7 @@ static void updatePixmap(fz_document *doc, fz_display_list *page_list, fz_displa
char *text = NULL;
if (!idoc)
- return;
+ return 0;
fz_var(opts);
fz_var(text);