Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType
Commits:
-
c78f78fa
by Alexei Podtelezhnikov at 2021-04-24T22:38:48-04:00
2 changed files:
Changes:
1 |
+2021-04-24 Alexei Podtelezhnikov <apodtele@gmail.com>
|
|
2 |
+ |
|
3 |
+ * src/cff/cffload.c (cff_index_get_pointers): s/FT_QALLOC/FT_ALLOC/.
|
|
4 |
+ |
|
1 | 5 |
2021-04-23 Alexei Podtelezhnikov <apodtele@gmail.com>
|
2 | 6 |
|
3 | 7 |
* src/base/ftobjs.c (Mac_Read_POST_Resource): s/FT_ALLOC/FT_QALLOC/.
|
... | ... | @@ -34,7 +38,7 @@ |
34 | 38 |
[cid] s/FT_ALLOC/FT_QALLOC/ and clean up.
|
35 | 39 |
|
36 | 40 |
* src/cid/cidgload.c (cid_load_glyph): Do not zero out the buffer.
|
37 |
- * src/cid/cidload.c (cid_face_open, cid_read_subrs): Ditto.
|
|
41 |
+ * src/cid/cidload.c (cid_face_open, cid_read_subrs): Ditto.
|
|
38 | 42 |
|
39 | 43 |
2021-04-23 Alexei Podtelezhnikov <apodtele@gmail.com>
|
40 | 44 |
|
... | ... | @@ -426,9 +426,9 @@ |
426 | 426 |
|
427 | 427 |
new_size = idx->data_size + idx->count;
|
428 | 428 |
|
429 |
- if ( idx->count > 0 &&
|
|
430 |
- !FT_NEW_ARRAY( tbl, idx->count + 1 ) &&
|
|
431 |
- ( !pool || !FT_QALLOC( new_bytes, new_size ) ) )
|
|
429 |
+ if ( idx->count > 0 &&
|
|
430 |
+ !FT_NEW_ARRAY( tbl, idx->count + 1 ) &&
|
|
431 |
+ ( !pool || !FT_ALLOC( new_bytes, new_size ) ) )
|
|
432 | 432 |
{
|
433 | 433 |
FT_ULong n, cur_offset;
|
434 | 434 |
FT_ULong extra = 0;
|