| Index: third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
|
| index 671efb107ae4697a412a4b83e8494fcbd3def4de..62508f25cb883b6cf4b1452a7b8fca3e7bbab6fe 100644
|
| --- a/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
|
| +++ b/third_party/WebKit/Source/modules/webgl/WebGLRenderingContextBase.cpp
|
| @@ -3501,7 +3501,7 @@ long long WebGLRenderingContextBase::getVertexAttribOffset(GLuint index, GLenum
|
| if (isContextLost())
|
| return 0;
|
| GLvoid* result = nullptr;
|
| - // NOTE: If pname is ever a value that returns more then 1 element
|
| + // NOTE: If pname is ever a value that returns more than 1 element
|
| // this will corrupt memory.
|
| contextGL()->GetVertexAttribPointerv(index, pname, &result);
|
| return static_cast<long long>(reinterpret_cast<intptr_t>(result));
|
|
|