| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2010 Apple Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | 22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 * THE POSSIBILITY OF SUCH DAMAGE. | 23 * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 */ | 24 */ |
| 25 | 25 |
| 26 #include "config.h" | 26 #include "config.h" |
| 27 #include <zlib.h> | 27 #include <zlib.h> |
| 28 #include "core/platform/graphics/WOFFFileFormat.h" | 28 #include "core/platform/graphics/WOFFFileFormat.h" |
| 29 | 29 |
| 30 #if !USE(OPENTYPE_SANITIZER) | 30 #if !USE(OPENTYPE_SANITIZER) |
| 31 | 31 |
| 32 #include "SharedBuffer.h" | 32 #include "core/platform/SharedBuffer.h" |
| 33 #include <wtf/ByteOrder.h> | 33 #include <wtf/ByteOrder.h> |
| 34 | 34 |
| 35 namespace WebCore { | 35 namespace WebCore { |
| 36 | 36 |
| 37 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value) | 37 static bool readUInt32(SharedBuffer* buffer, size_t& offset, uint32_t& value) |
| 38 { | 38 { |
| 39 ASSERT_ARG(offset, offset <= buffer->size()); | 39 ASSERT_ARG(offset, offset <= buffer->size()); |
| 40 if (buffer->size() - offset < sizeof(value)) | 40 if (buffer->size() - offset < sizeof(value)) |
| 41 return false; | 41 return false; |
| 42 | 42 |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 while (sfnt.size() % 4) | 214 while (sfnt.size() % 4) |
| 215 sfnt.append(0); | 215 sfnt.append(0); |
| 216 } | 216 } |
| 217 | 217 |
| 218 return sfnt.size() == totalSfntSize; | 218 return sfnt.size() == totalSfntSize; |
| 219 } | 219 } |
| 220 | 220 |
| 221 } // namespace WebCore | 221 } // namespace WebCore |
| 222 | 222 |
| 223 #endif // !USE(OPENTYPE_SANITIZER) | 223 #endif // !USE(OPENTYPE_SANITIZER) |
| OLD | NEW |