Re: [pgAdmin4][Patch] RM #3277 Runtime startup error handling isbroken on Windows

Поиск
Список
Период
Сортировка
От Dave Page
Тема Re: [pgAdmin4][Patch] RM #3277 Runtime startup error handling isbroken on Windows
Дата
Msg-id CA+OCxozs18ZfdbgeShMd-anak9124Ap68rib=tV=5CRObCwwVw@mail.gmail.com
обсуждение исходный текст
Ответ на [pgAdmin4][Patch] RM #3277 Runtime startup error handling is brokenon Windows  (Akshay Joshi <akshay.joshi@enterprisedb.com>)
Список pgadmin-hackers
Thanks, applied.

On Thu, May 31, 2018 at 4:52 AM, Akshay Joshi <akshay.joshi@enterprisedb.com> wrote:
Hi Hackers,

Attached is the patch file to fix RM #3277 Runtime startup error handling is broken on Windows. I have figure out the crash at the following call of Server.cpp(line no 326):

PyRun_SimpleFile(fdopen(PyObject_AsFileDescriptor(PyFileObject),"r"), m_appfile_utf8.data())

When application exits due to some error it throws BEX refers to Buffer Overflow Exception, when I debug and found that it throws BEX for above function call. I have replace that call with the following:
PyRun_SimpleFile(cp, m_appfile_utf8.data())
Anyways we have open the file using fopen() at the top of the function then why to open that again using fdopen() in the first call. 

Tested the patch with Python 3.5 and 3.6, please review it.

--
Akshay Joshi
Sr. Software Architect


Phone: +91 20-3058-9517
Mobile: +91 976-788-8246



--
Dave Page
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: pgAdmin 4 commit: Cleanup Python 3 server startup code. Fixes #3277
Следующее
От: Dave Page
Дата:
Сообщение: pgAdmin 4 commit: Fix an issue where a change to any field in serverdi