summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysqlnd_priv.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2011-05-31 10:35:07 +0000
committerAndrey Hristov <andrey@php.net>2011-05-31 10:35:07 +0000
commit0de3cd84a53acbf041b4fb4239442e3a3fd42e0a (patch)
tree362653cbc0bf799e175b653e059348240e75d658 /ext/mysqlnd/mysqlnd_priv.h
parent3300cc8e38198867e2e24c5bee876ed124298796 (diff)
downloadphp-git-0de3cd84a53acbf041b4fb4239442e3a3fd42e0a.tar.gz
fix macros
Diffstat (limited to 'ext/mysqlnd/mysqlnd_priv.h')
-rw-r--r--ext/mysqlnd/mysqlnd_priv.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/ext/mysqlnd/mysqlnd_priv.h b/ext/mysqlnd/mysqlnd_priv.h
index b76984bf47..49ec127800 100644
--- a/ext/mysqlnd/mysqlnd_priv.h
+++ b/ext/mysqlnd/mysqlnd_priv.h
@@ -114,7 +114,7 @@
if ((message)) { \
(buf) = mnd_pestrndup((message), (len), (persistent)); \
} else { \
- buf = NULL; \
+ (buf) = NULL; \
} \
(buf_len) = (len); \
}
@@ -131,22 +131,22 @@
#define SET_EMPTY_ERROR(error_info) \
{ \
- error_info.error_no = 0; \
- error_info.error[0] = '\0'; \
- strlcpy(error_info.sqlstate, "00000", sizeof(error_info.sqlstate)); \
+ (error_info).error_no = 0; \
+ (error_info).error[0] = '\0'; \
+ strlcpy((error_info).sqlstate, "00000", sizeof((error_info).sqlstate)); \
}
#define SET_CLIENT_ERROR(error_info, a, b, c) \
{ \
- error_info.error_no = (a); \
- strlcpy(error_info.sqlstate, (b), sizeof(error_info.sqlstate)); \
- strlcpy(error_info.error, (c), sizeof(error_info.error)); \
+ (error_info).error_no = (a); \
+ strlcpy((error_info).sqlstate, (b), sizeof((error_info).sqlstate)); \
+ strlcpy((error_info).error, (c), sizeof((error_info).error)); \
}
-#define SET_OOM_ERROR(error_info) SET_CLIENT_ERROR(error_info, CR_OUT_OF_MEMORY, UNKNOWN_SQLSTATE, mysqlnd_out_of_memory)
+#define SET_OOM_ERROR(error_info) SET_CLIENT_ERROR((error_info), CR_OUT_OF_MEMORY, UNKNOWN_SQLSTATE, mysqlnd_out_of_memory)
-#define SET_STMT_ERROR(stmt, a, b, c) SET_CLIENT_ERROR(stmt->error_info, a, b, c)
+#define SET_STMT_ERROR(stmt, a, b, c) SET_CLIENT_ERROR((stmt)->error_info, a, b, c)
#ifdef ZTS
@@ -154,7 +154,7 @@
#define CONN_SET_STATE(c, s) (c)->m->set_state((c), (s) TSRMLS_CC)
#else
#define CONN_GET_STATE(c) ((c)->state)
-#define CONN_SET_STATE(c, s) ((c)->state = s)
+#define CONN_SET_STATE(c, s) ((c)->state = (s))
#endif