diff options
Initialise dest to NULL instead of 0 for consistency.
Diffstat (limited to 'woff.c')
-rw-r--r-- | woff.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -258,7 +258,7 @@ woffEncode(const uint8_t * sfntData, uint32_t sfntLen, for (order = 0; order < numTables; ++order) { uLong sourceLen, destLen = 0; - uint8_t* dest = 0; + uint8_t* dest = NULL; uint32_t sourceOffset; uint16_t oldIndex = tableOrder[order].oldIndex; |