search for: content_size

Displaying 4 results from an estimated 4 matches for "content_size".

2015 Jan 06
2
Problem with HP printers after upgrade from 4.1.12-9 to 4.1.14-9
...rsion 5.9.0.18326 with snmp disabled. Errors occure from Windows Server 2003 32Bit and Windows 7 clients. Here's an level 1 log of what happens if i try to print an test page. [2015/01/06 09:38:46.390992, 1] ../librpc/ndr/ndr.c:489(ndr_push_error) ndr_push_error(7): Bad subcontext (PUSH) content_size 104 is larger than size_is(0) [2015/01/06 09:38:46.391316, 0] ../source3/rpc_server/srv_pipe.c:1395(api_rpcTNP) api_rpcTNP: \spoolss: SPOOLSS_GETJOB failed. [2015/01/06 09:38:47.802525, 1] ../source3/smbd/service.c:1130(close_cnum) 192.168.170.25 (ipv4:192.168.170.25:52295) closed connect...
2010 Aug 26
1
[PATCH] New APIs: hopen-device hopen-file hread hwrite hseek hclose hclose-all
...ize); + if (in < 0) { + reply_with_perror_errno(errno, "error reading from handle %i", handle); + goto error; + } + + *size_r = in; + return buf; +error: + free(buf); + return NULL; +} + +int /* RErr */ +do_hwrite (int handle, const char *content, size_t content_size) +{ + size_t pos = 0; + while (pos < content_size) { + ssize_t out = write(handle, content + pos, content_size - pos); + + if (out < 0) { + reply_with_perror_errno(errno, "error writing to handle %i", handle); + return -1; + } +...
2015 Jan 06
0
Problem with HP printers after upgrade from 4.1.12-9 to 4.1.14-9
...isabled. Errors occure from >Windows Server 2003 32Bit and Windows 7 clients. > >Here's an level 1 log of what happens if i try to print an test page. > >[2015/01/06 09:38:46.390992, 1] >../librpc/ndr/ndr.c:489(ndr_push_error) > ndr_push_error(7): Bad subcontext (PUSH) content_size 104 is larger >than size_is(0) >[2015/01/06 09:38:46.391316, 0] >../source3/rpc_server/srv_pipe.c:1395(api_rpcTNP) > api_rpcTNP: \spoolss: SPOOLSS_GETJOB failed. >[2015/01/06 09:38:47.802525, 1] >../source3/smbd/service.c:1130(close_cnum) > 192.168.170.25 (ipv4:192.168...
2013 Mar 01
0
Wine release 1.5.25
...DefaultHandler_Run. cmd: Fixed memory leak in WCMD_run_program. msvcrt: Fixed closing of FindFirstFile handle in build_expanded_argv. Rico Sch?ller (2): d3d9/tests: Use lower base hexadecimal values. d3dx9: Fix typos. Ri?ardas Barkauskas (2): wined3d: Rename bsize to content_size to reflect usage. wined3d: Make shader buffer dynamic. Vincent Povirk (2): mscoree: Add WINE_MONO_VERBOSE environment setting. mscoree: Keep a reference to mscoree when shutting down. -- Alexandre Julliard julliard at winehq.org