Commit 2f83e460 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

inetcomm: Fix spelling typo.

parent 5df59e29
...@@ -396,7 +396,7 @@ static HRESULT parse_headers(MimeBody *body, IStream *stm) ...@@ -396,7 +396,7 @@ static HRESULT parse_headers(MimeBody *body, IStream *stm)
return hr; return hr;
} }
static void emptry_param_list(struct list *list) static void empty_param_list(struct list *list)
{ {
param_t *param, *cursor2; param_t *param, *cursor2;
...@@ -417,7 +417,7 @@ static void empty_header_list(struct list *list) ...@@ -417,7 +417,7 @@ static void empty_header_list(struct list *list)
{ {
list_remove(&header->entry); list_remove(&header->entry);
PropVariantClear(&header->value); PropVariantClear(&header->value);
emptry_param_list(&header->params); empty_param_list(&header->params);
HeapFree(GetProcessHeap(), 0, header); HeapFree(GetProcessHeap(), 0, header);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment