diff options
author | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-23 22:04:15 +0100 |
---|---|---|
committer | Cedric BAIL <cedric@osg.samsung.com> | 2015-03-23 22:04:15 +0100 |
commit | 671bd817bfb4e8ab96537d80310526f9bf9edf23 (patch) | |
tree | 73c58d9fd6d433fb18dcc7e1e91038480a106b90 /src/lib/emile | |
parent | 9c03e3e728f07c4aa9c401646cdbca3127342944 (diff) |
emile: meaningful initialization of some pointers.
Diffstat (limited to 'src/lib/emile')
-rw-r--r-- | src/lib/emile/emile_image.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/emile/emile_image.c b/src/lib/emile/emile_image.c index 99a21b7145..c75d2f579b 100644 --- a/src/lib/emile/emile_image.c +++ b/src/lib/emile/emile_image.c | |||
@@ -1573,9 +1573,9 @@ _emile_jpeg_data(Emile_Image *image, | |||
1573 | struct _JPEG_error_mgr jerr; | 1573 | struct _JPEG_error_mgr jerr; |
1574 | const unsigned char *m = NULL; | 1574 | const unsigned char *m = NULL; |
1575 | uint8_t *ptr, *line[16], *data; | 1575 | uint8_t *ptr, *line[16], *data; |
1576 | uint32_t *ptr2, *ptr_rotate = NULL; | 1576 | uint32_t *ptr2 = NULL, *ptr_rotate = NULL; |
1577 | uint16_t *ptrag, *ptrag_rotate = NULL; | 1577 | uint16_t *ptrag, *ptrag_rotate = NULL; |
1578 | uint8_t *ptrg, *ptrg_rotate = NULL; | 1578 | uint8_t *ptrg = NULL, *ptrg_rotate = NULL; |
1579 | unsigned int x, y, l, i, scans; | 1579 | unsigned int x, y, l, i, scans; |
1580 | int region = 0; | 1580 | int region = 0; |
1581 | /* rotation setting */ | 1581 | /* rotation setting */ |