Index: libcfa/src/parseconfig.cfa
===================================================================
--- libcfa/src/parseconfig.cfa	(revision a0e142f0a806907ed5c72af307c6b8dd58bad9a9)
+++ libcfa/src/parseconfig.cfa	(revision 0cfa768af48381bb9272a1fb4585d94bad6f505d)
@@ -128,8 +128,12 @@
 		  	// Right now doesn't handle duplicate keys. Should use hashmap for that
 			char c;
-			StringBuilder key_sb;
-			StringBuilder value_sb;
+			[1024] char key;
+			[1024] char value;
+			//StringBuilder key_sb;
+			//StringBuilder value_sb;
 
 			// Doesn't handle comments
+			in | key;
+			/*
 			while () {
 				in | c;
@@ -141,9 +145,12 @@
 				}
 			}
-
-			* char key = alloc( key_sb.size );
-			strcpy( key, key_sb.string );
+			*/
+
+			//* char key = alloc( key_sb.size );
+			//strcpy( key, key_sb.string );
 
 			// Doesn't handle comments
+			in | value;
+			/*
 			while () {
 				in | c;
@@ -151,7 +158,8 @@
 				add_char( value_sb, c );
 			}
-
-			* char value = alloc( value_sb.size );
-			strcpy( value, value_sb.string );
+			*/
+
+			//* char value = alloc( value_sb.size );
+			//strcpy( value, value_sb.string );
 
 			add_kv_pair( kv_pairs, key, value );
