@@ -116,16 +116,16 @@ class DebugStackwalk
116116 \brief Determines symbol for given address.
117117
118118 \param addr function address
119- \param bufMod module buffer, may be NULL
119+ \param bufMod module buffer, may be nullptr
120120 \param sizeMod size of buffer, including NUL, minimum 16 if given
121- \param relMod relative address within module, may be NULL
122- \param bufSym symbol buffer, may be NULL
121+ \param relMod relative address within module, may be nullptr
122+ \param bufSym symbol buffer, may be nullptr
123123 \param sizeSym size of buffer, including NUL
124- \param relSym relative address within symbol, may be NULL
125- \param bufFile file name buffer, may be NULL
124+ \param relSym relative address within symbol, may be nullptr
125+ \param bufFile file name buffer, may be nullptr
126126 \param sizeFile size of buffer, including NUL
127- \param line line number, may be NULL
128- \param relLine relative address within line, may be NULL
127+ \param line line number, may be nullptr
128+ \param relLine relative address within line, may be nullptr
129129 */
130130 static void GetSymbol (unsigned addr,
131131 char *bufMod, unsigned sizeMod, unsigned *relMod,
@@ -151,7 +151,7 @@ class DebugStackwalk
151151 \brief Walks the stack from the given address.
152152
153153 \param sig stack signature to return
154- \param ctx processor context, if NULL then use current address
154+ \param ctx processor context, if nullptr then use current address
155155 \return number of addresses found
156156 */
157157 static int StackWalk (Signature &sig, struct _CONTEXT *ctx=0 );
0 commit comments