Displaying 1 result from an estimated 1 matches for "00424".
Did you mean:
0042
2010 Jul 07
3
Message: "err:psdrv:PSDRV_PPDGetNextTuple Line too long."
...cp == '/') {
00418 char *buf;
00419 trans = cp + 1;
00420 cp = strchr(trans, ':');
00421 if(!cp) {
00422 ERR("Error in line '%s'?\n", line);
00423 HeapFree(GetProcessHeap(), 0, tuple->option);
00424 HeapFree(GetProcessHeap(), 0, tuple->key);
00425 goto start;
00426 }
00427 buf = HeapAlloc( PSDRV_Heap, 0, cp - trans + 1 );
00428 if(!buf) return FALSE;
00429 memcpy(buf, trans, cp - trans);
00430 buf[cp - trans] = ...