From 47b359388cdf6348238e7fc05770426448049189 Mon Sep 17 00:00:00 2001 From: Max Romanov Date: Tue, 18 Jul 2017 00:21:13 +0300 Subject: [PATCH] Python: typo fixed in string processing shortcut. --- src/nxt_python_wsgi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nxt_python_wsgi.c b/src/nxt_python_wsgi.c index aabdc0a1..1dcf8bf7 100644 --- a/src/nxt_python_wsgi.c +++ b/src/nxt_python_wsgi.c @@ -437,8 +437,8 @@ nxt_python_run(nxt_task_t *task, nxt_app_rmsg_t *rmsg, nxt_app_wmsg_t *wmsg) /* Shortcut: avoid iterate over result string symbols. */ if (PyBytes_Check(result) != 0) { - size = PyBytes_GET_SIZE(item); - buf = (u_char *) PyBytes_AS_STRING(item); + size = PyBytes_GET_SIZE(result); + buf = (u_char *) PyBytes_AS_STRING(result); nxt_python_write(&run_ctx, buf, size, 1, 1);