summaryrefslogtreecommitdiff
path: root/win32/win32.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2007-06-08 09:07:46 +0000
committerSteve Hay <SteveHay@planit.com>2007-06-08 09:07:46 +0000
commit67696c502b064f1913c631a0eaa9885c8f7e5be8 (patch)
tree0c14c5798c57b70b741d28defcf59f4c515e886c /win32/win32.c
parenta93c76d3e4665115cea3e11c220832af8061a030 (diff)
downloadperl-67696c502b064f1913c631a0eaa9885c8f7e5be8.tar.gz
Change 31347 should also have removed win32_free_argvw()
because it now isn't used anywhere. p4raw-id: //depot/perl@31356
Diffstat (limited to 'win32/win32.c')
-rw-r--r--win32/win32.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/win32/win32.c b/win32/win32.c
index a1c0d46db6..e12ac6789a 100644
--- a/win32/win32.c
+++ b/win32/win32.c
@@ -4968,13 +4968,3 @@ Perl_sys_intern_dup(pTHX_ struct interp_intern *src, struct interp_intern *dst)
}
# endif /* USE_ITHREADS */
#endif /* HAVE_INTERP_INTERN */
-
-static void
-win32_free_argvw(pTHX_ void *ptr)
-{
- char** argv = (char**)ptr;
- while(*argv) {
- Safefree(*argv);
- *argv++ = Nullch;
- }
-}