mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-03 04:18:51 +00:00
Monotone-Parent: c9072cd9f62ce341982a28f6b662d079949b101d
Monotone-Revision: 819868044eb268089e0c5cc2f35f71e9b157e69a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-11-22T19:54:53 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -157,9 +157,9 @@
|
||||
|
||||
max = [self count];
|
||||
|
||||
list = talloc_zero(memCtx, struct LongArray_r);
|
||||
list = talloc_zero (memCtx, struct LongArray_r);
|
||||
list->cValues = max;
|
||||
list->lpl = talloc_array(list, uint32_t, max);
|
||||
list->lpl = talloc_array (list, uint32_t, max);
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
number = [self objectAtIndex: count];
|
||||
@@ -208,9 +208,9 @@
|
||||
|
||||
max = [self count];
|
||||
|
||||
list = talloc_zero(memCtx, struct WStringArray_r);
|
||||
list = talloc_zero (memCtx, struct WStringArray_r);
|
||||
list->cValues = max;
|
||||
list->lppszW = talloc_array(list, const char *, max);
|
||||
list->lppszW = talloc_array (list, const char *, max);
|
||||
|
||||
for (count = 0; count < max; count++)
|
||||
list->lppszW[count] = [[self objectAtIndex: count] asUnicodeInMemCtx: list->lppszW];
|
||||
@@ -258,9 +258,9 @@
|
||||
|
||||
max = [self count];
|
||||
|
||||
list = talloc_zero(memCtx,struct BinaryArray_r);
|
||||
list = talloc_zero (memCtx,struct BinaryArray_r);
|
||||
list->cValues = max;
|
||||
list->lpbin = talloc_array(list, struct Binary_r, max);
|
||||
list->lpbin = talloc_array (list, struct Binary_r, max);
|
||||
|
||||
for (count = 0; count < max; count++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user