~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/include/ut0lst.h

  • Committer: Monty Taylor
  • Date: 2008-09-15 17:24:04 UTC
  • Revision ID: monty@inaugust.com-20080915172404-ygh6hiyu0q7qpa9x
Removed strndup calls.

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
        ((BASE).count)++;\
74
74
        ((N)->NAME).next = (BASE).start;\
75
75
        ((N)->NAME).prev = NULL;\
76
 
        if (UNIV_LIKELY((BASE).start != NULL)) {\
 
76
        if ((BASE).start != NULL) {\
77
77
                ut_ad((BASE).start != (N));\
78
78
                (((BASE).start)->NAME).prev = (N);\
79
79
        }\
80
80
        (BASE).start = (N);\
81
 
        if (UNIV_UNLIKELY((BASE).end == NULL)) {\
 
81
        if ((BASE).end == NULL) {\
82
82
                (BASE).end = (N);\
83
83
        }\
84
84
}\