Unverified Commit e1f3aaea authored by Marcel Raad's avatar Marcel Raad
Browse files

examples/htmltitle: use C++ casts between pointer types

Compilers and static analyzers warn about using C-style casts here.

Closes https://github.com/curl/curl/pull/3975
parent 992083b1
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -136,9 +136,9 @@ static void StartElement(void *voidContext,
                         const xmlChar *name,
                         const xmlChar **attributes)
{
  Context *context = (Context *)voidContext;
  Context *context = static_cast<Context *>(voidContext);

  if(COMPARE((char *)name, "TITLE")) {
  if(COMPARE(reinterpret_cast<char *>(name), "TITLE")) {
    context->title = "";
    context->addTitle = true;
  }
@@ -152,9 +152,9 @@ static void StartElement(void *voidContext,
static void EndElement(void *voidContext,
                       const xmlChar *name)
{
  Context *context = (Context *)voidContext;
  Context *context = static_cast<Context *>(voidContext);

  if(COMPARE((char *)name, "TITLE"))
  if(COMPARE(reinterpret_cast<char *>(name), "TITLE"))
    context->addTitle = false;
}

@@ -167,7 +167,7 @@ static void handleCharacters(Context *context,
                             int length)
{
  if(context->addTitle)
    context->title.append((char *)chars, length);
    context->title.append(reinterpret_cast<char *>(chars), length);
}

//
@@ -178,7 +178,7 @@ static void Characters(void *voidContext,
                       const xmlChar *chars,
                       int length)
{
  Context *context = (Context *)voidContext;
  Context *context = static_cast<Context *>(voidContext);

  handleCharacters(context, chars, length);
}
@@ -191,7 +191,7 @@ static void cdata(void *voidContext,
                  const xmlChar *chars,
                  int length)
{
  Context *context = (Context *)voidContext;
  Context *context = static_cast<Context *>(voidContext);

  handleCharacters(context, chars, length);
}