mirror of
https://github.com/psycopg/psycopg2.git
synced 2024-11-22 17:06:33 +03:00
psycopg_escape_string: don't make me cringe
Just reformatted.
This commit is contained in:
parent
79de02d7d5
commit
15cba69a20
|
@ -55,9 +55,9 @@ psycopg_escape_string(connectionObject *conn, const char *from, Py_ssize_t len,
|
||||||
if (len < 0) {
|
if (len < 0) {
|
||||||
len = strlen(from);
|
len = strlen(from);
|
||||||
} else if (strchr(from, '\0') != from + len) {
|
} else if (strchr(from, '\0') != from + len) {
|
||||||
PyErr_Format(PyExc_ValueError, "A string literal cannot contain NUL (0x00) characters.");
|
PyErr_Format(PyExc_ValueError,
|
||||||
|
"A string literal cannot contain NUL (0x00) characters.");
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (to == NULL) {
|
if (to == NULL) {
|
||||||
|
@ -69,11 +69,11 @@ psycopg_escape_string(connectionObject *conn, const char *from, Py_ssize_t len,
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
int err;
|
int err;
|
||||||
if (conn && conn->pgconn)
|
if (conn && conn->pgconn)
|
||||||
ql = PQescapeStringConn(conn->pgconn, to+eq+1, from, len, &err);
|
ql = PQescapeStringConn(conn->pgconn, to+eq+1, from, len, &err);
|
||||||
else
|
else
|
||||||
ql = PQescapeString(to+eq+1, from, len);
|
ql = PQescapeString(to+eq+1, from, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (eq) {
|
if (eq) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user