Git Product home page Git Product logo

Comments (7)

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
Attaching test files.
On Windows XP it works fine.
The problem appears only on Windows 7 for these test files.

Original comment by [email protected] on 19 Aug 2012 at 9:18

  • Changed state: Accepted

Attachments:

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
I think I've fixed it, but need confirmation, I use XP and cannot reproduce the 
bug.

Download cefpython.pyd from the repository and test it:
http://cefpython.googlecode.com/git/cefexample/cefpython.pyd

Original comment by [email protected] on 19 Aug 2012 at 9:47

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
My test file is fixed.  Thanks.

Original comment by [email protected] on 19 Aug 2012 at 10:51

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
The problem with garbage data was in a function that converted CEFString to 
Python string (CefStringToPyString in utils.pyx), it took the C string (a 
pointer to wchar_t) from CEFString, and then converted it into char. To make 
the conversion a WideCharToMultiByte() function was used, but there is one 
quirk about this function. You call this func twice, first time to calculate 
the bytes that need to be copied. When string is non-empty it returns the bytes 
including the NUL character, so if string is 4 bytes it returns 5 bytes so that 
NUL (\0) is also copied. But when string is empty it returns 0 bytes. When you 
combine it with use of malloc() then you get garbage data, because malloc does 
not initialize the memory, and WideCharToMultiByte does not copy the NUL 
character when string is empty. The solution is to use calloc()  instead of 
malloc(), calloc initializes the memory with zeros.

This fix will make it into next 0.34 release.

Original comment by [email protected] on 20 Aug 2012 at 8:22

  • Changed state: Fixed

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
Version 0.35 released, comes with a fix for this issue.

Original comment by [email protected] on 23 Aug 2012 at 8:28

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
[deleted comment]

from cefpython.

GoogleCodeExporter avatar GoogleCodeExporter commented on May 22, 2024
Project will move to Github. Find this issue at the new address (soon): 
https://github.com/cztomczak/cefpython/issues/7

Original comment by [email protected] on 24 Aug 2015 at 6:23

from cefpython.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.