Commit 13553cbb authored by Teodor Sigaev's avatar Teodor Sigaev

Fix header's size of structs defines in ispell.

Backpatch is needed for contrib version.
parent 64def095
......@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tsearch/spell.c,v 1.4 2007/09/10 20:27:12 teodor Exp $
* $PostgreSQL: pgsql/src/backend/tsearch/spell.c,v 1.5 2007/09/11 12:57:05 teodor Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -896,7 +896,7 @@ mkSPNode(IspellDict * Conf, int low, int high, int level)
if (!nchar)
return NULL;
rs = (SPNode *) palloc0(SPNHRDSZ + nchar * sizeof(SPNodeData));
rs = (SPNode *) palloc0(SPNHDRSZ + nchar * sizeof(SPNodeData));
rs->length = nchar;
data = rs->data;
......
......@@ -6,7 +6,7 @@
*
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
* $PostgreSQL: pgsql/src/include/tsearch/dicts/spell.h,v 1.2 2007/08/25 00:03:59 tgl Exp $
* $PostgreSQL: pgsql/src/include/tsearch/dicts/spell.h,v 1.3 2007/09/11 12:57:05 teodor Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -52,7 +52,7 @@ typedef struct SPNode
SPNodeData data[1];
} SPNode;
#define SPNHRDSZ (sizeof(uint32))
#define SPNHDRSZ (offsetof(SPNode,data))
typedef struct spell_struct
......@@ -123,7 +123,7 @@ typedef struct AffixNode
AffixNodeData data[1];
} AffixNode;
#define ANHRDSZ (sizeof(uint32))
#define ANHRDSZ (offsetof(AffixNode, data))
typedef struct
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment