This commit is contained in:
邹晓航
2015-01-29 14:10:34 +08:00
parent 361c80d4d9
commit b1b6593502

View File

@@ -102,7 +102,7 @@ namespace TinySTL{
for (int i = 0; i <= EMaxBytes::MAXBYTES; i += EAlign::ALIGN){ for (int i = 0; i <= EMaxBytes::MAXBYTES; i += EAlign::ALIGN){
my_free_list = free_list + FREELIST_INDEX(i); my_free_list = free_list + FREELIST_INDEX(i);
p = *my_free_list; p = *my_free_list;
if (!p){ if (p != 0){
*my_free_list = p->next; *my_free_list = p->next;
start_free = (char *)p; start_free = (char *)p;
end_free = start_free + i; end_free = start_free + i;