Module: wine
Branch: master
Commit: 085c39342b83ba342180c425ce69edf735e839ba
URL: http://source.winehq.org/git/wine.git/?a=commit;h=085c39342b83ba342180c425c…
Author: Francois Gouget <fgouget(a)codeweavers.com>
Date: Wed Nov 18 11:14:25 2009 +0100
cmd: Remove spaces before '\n's.
---
programs/cmd/It.rc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/programs/cmd/It.rc b/programs/cmd/It.rc
index d334ed1..8eb2a33 100644
--- a/programs/cmd/It.rc
+++ b/programs/cmd/It.rc
@@ -75,7 +75,7 @@ esiste nel cmd di wine.\n"
file batch.\n\
\n\
L'etichetta che è l'obiettivo di un GOTO può essere lunga fino a 255 caratteri\n\
-ma non può includere spazi (questo è differente da altri sistemi \n\
+ma non può includere spazi (questo è differente da altri sistemi\n\
operativi). Se esistono due o più etichette identiche esistono in un file batch, la\n\
prima sarà sempre eseguita. Tentare un GOTO verso un'etichetta\n\
inesistente termina l'esecuzione del file batch.\n\
Module: wine
Branch: master
Commit: 37793cd5507df9a42e93f79ba6894fc0be0be431
URL: http://source.winehq.org/git/wine.git/?a=commit;h=37793cd5507df9a42e93f79ba…
Author: Rob Shearman <robertshearman(a)gmail.com>
Date: Wed Nov 18 00:25:26 2009 +0000
rpcrt4: Fix the pointer saved during full pointer unmarshalling.
The pointer address may set by the type unmarshalling function and
therefore will not be base_ptr_val. This value is the value at
*pPointer and is what needs to be retrieved during subsequent
unmarshalling of the same function.
---
dlls/rpcrt4/ndr_marshall.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/rpcrt4/ndr_marshall.c b/dlls/rpcrt4/ndr_marshall.c
index d1b57fd..8db45b8 100644
--- a/dlls/rpcrt4/ndr_marshall.c
+++ b/dlls/rpcrt4/ndr_marshall.c
@@ -935,7 +935,7 @@ static void PointerUnmarshall(PMIDL_STUB_MESSAGE pStubMsg,
if (type == RPC_FC_FP)
NdrFullPointerInsertRefId(pStubMsg->FullPtrXlatTables, pointer_id,
- base_ptr_val);
+ *pPointer);
}
TRACE("pointer=%p\n", *pPointer);