| 
Check-in Number:
 | 
  3467 |  | 
| Date: | 
  2003-Jun-30 14:38:17 (local)
   2003-Jun-30 12:38:17 (UTC) | 
| User: | thl | 
| Branch: |  | 
| Comment: | 
fix array too small by one element bug | 
| Tickets: | 
 | 
| Inspections: | 
 | 
| Files: | 
 | 
ossp-pkg/l2/l2_ch_fd.c  1.16 -> 1.17
--- l2_ch_fd.c   2003/01/06 11:41:51     1.16
+++ l2_ch_fd.c   2003/06/30 12:38:17     1.17
@@ -58,7 +58,7 @@
 static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
 {
     l2_ch_fd_t *cfg;
-    l2_param_t pa[1];
+    l2_param_t pa[2];
     l2_result_t rv;
     l2_env_t *env;
 
 |   
 | 
ossp-pkg/l2/l2_ch_file.c  1.26 -> 1.27
--- l2_ch_file.c 2003/06/30 11:13:08     1.26
+++ l2_ch_file.c 2003/06/30 12:38:17     1.27
@@ -69,7 +69,7 @@
 static l2_result_t hook_configure(l2_context_t *ctx, l2_channel_t *ch, const char *fmt, va_list ap)
 {
     l2_ch_file_t *cfg = (l2_ch_file_t *)ctx->vp;
-    l2_param_t pa[4];
+    l2_param_t pa[5];
     l2_result_t rv;
     l2_env_t *env;
 
 |   
 |