wrowe 01/09/17 13:02:35
Modified: threadproc/win32 proc.c
Log:
Clean up an emit.
Revision Changes Path
1.54 +3 -1 apr/threadproc/win32/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apr/threadproc/win32/proc.c,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- proc.c 2001/09/17 20:00:07 1.53
+++ proc.c 2001/09/17 20:02:34 1.54
@@ -363,8 +363,10 @@
* ###: This solution isn't much better - it may defeat path
searching
* when the path search was desired. Open to further discussion.
*/
- apr_filepath_merge(&progname, attr->currdir, progname,
+ char *progpath;
+ apr_filepath_merge(&progpath, attr->currdir, progname,
APR_FILEPATH_NATIVE, cont);
+ progname = progpath;
}