~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_error.c

  • Committer: Brian Aker
  • Date: 2008-10-06 06:47:29 UTC
  • Revision ID: brian@tangent.org-20081006064729-2i9mhjkzyvow9xsm
RemoveĀ uint.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
   along with this program; if not, write to the Free Software
14
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
 
#include "mysys/mysys_priv.h"
17
 
#include "mysys/mysys_err.h"
 
16
#include "mysys_priv.h"
 
17
#include <libdrizzle/gettext.h>
 
18
#include "mysys_err.h"
18
19
#include <mystrings/m_string.h>
 
20
#include <stdarg.h>
19
21
#include <mystrings/m_ctype.h>
20
 
#include <drizzled/gettext.h>
21
 
#include <stdio.h>
22
 
#include <stdarg.h>
23
22
 
24
23
/* Define some external variables for error handling */
25
24
 
32
31
  my_printf_error(ER_CODE, format, MYF(N), ...)
33
32
*/
34
33
 
 
34
char errbuff[NRERRBUFFS][ERRMSGSIZE];
 
35
 
35
36
/*
36
37
  Message texts are registered into a linked list of 'my_err_head' structs.
37
38
  Each struct contains (1.) an array of pointers to C character strings with
161
162
  struct my_err_head **search_meh_pp;
162
163
 
163
164
  /* Allocate a new header structure. */
164
 
  if (! (meh_p= (struct my_err_head*) malloc(sizeof(struct my_err_head))))
 
165
  if (! (meh_p= (struct my_err_head*) my_malloc(sizeof(struct my_err_head),
 
166
                                                MYF(MY_WME))))
165
167
    return 1;
166
168
  meh_p->meh_errmsgs= errmsgs;
167
169
  meh_p->meh_first= first;
242
244
 
243
245
  if (is_globerrs)
244
246
    return NULL;
245
 
 
 
247
  
246
248
  return errmsgs;
247
249
}
248
250