https://bugs.documentfoundation.org/show_bug.cgi?id=90911

Juergen Funk <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 OS|All                         |Windows (All)

--- Comment #2 from Juergen Funk <[email protected]> ---
Found the problem is in the master, and i fixed only in the master

The problem is in
http://opengrok.libreoffice.org/xref/core/sd/source/ui/remotecontrol/BluetoothServer.cxx#1347

SOCKADDR aName; -> that has a size of 0x10
int aNameSize = sizeof(aAddr);  -> that has a size of 0x1e
getsockname( aSocket, &aName, &aNameSize ); -> use the buffer with sizeof 0x10

The size of aAddr is 0x0E graeter then of aName, and that leads to
stack-overflow.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to