From: | Victoria Henry <vhenry(at)pivotal(dot)io> |
---|---|
To: | Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com> |
Cc: | pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org> |
Subject: | Re: [pgAdmin4][Patch] RM #3277 Runtime startup error handling is broken on Windows |
Date: | 2018-05-31 13:37:23 |
Message-ID: | CANxYE3LLZ5pr-f+dxPXzZP=wwMXZoQLGW-3Br=umVNsm7AxSWA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgadmin-hackers |
Hi Akshay,
Thanks for the patch. It looks good to me as long as it also works on
windows.
Sincerely,
Victoria & Anthony
On Thu, May 31, 2018 at 4:53 AM Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)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-9517Mobile: +91 976-788-8246*
>
From | Date | Subject | |
---|---|---|---|
Next Message | Dave Page | 2018-05-31 14:07:12 | pgAdmin 4 commit: Cleanup Python 3 server startup code. Fixes #3277 |
Previous Message | Victoria Henry | 2018-05-31 13:31:52 | Re: [pgAdmin4][Patch#3389] To prevent unwanted model changes in Server dialog |