Chromium Code Reviews| Index: core/src/fxcrt/fx_basic_plex.cpp |
| diff --git a/core/src/fxcrt/fx_basic_plex.cpp b/core/src/fxcrt/fx_basic_plex.cpp |
| index bff55461f401fcce1a72e314d17fb11e80b85d99..78319bd5da15a76416c77093a54cfb96118b5c88 100644 |
| --- a/core/src/fxcrt/fx_basic_plex.cpp |
| +++ b/core/src/fxcrt/fx_basic_plex.cpp |
| @@ -9,9 +9,6 @@ |
| CFX_Plex* CFX_Plex::Create(CFX_Plex*& pHead, FX_DWORD nMax, FX_DWORD cbElement) |
| { |
| CFX_Plex* p = (CFX_Plex*)FX_Alloc(FX_BYTE, sizeof(CFX_Plex) + nMax * cbElement); |
|
Lei Zhang
2015/05/15 23:44:17
Not going to check for overflows / convert to Allo
Tom Sepez
2015/05/18 16:04:30
Ah, this one didn't fit the model and should be cl
|
| - if (!p) { |
| - return NULL; |
| - } |
| p->pNext = pHead; |
| pHead = p; |
| return p; |