summaryrefslogtreecommitdiff
path: root/source3/client/tree.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-12-04 18:24:19 -0800
committerJeremy Allison <jra@samba.org>2007-12-04 18:24:19 -0800
commit65d5d7c59a87b4c12c689a3f8d1a9f64f62d2fec (patch)
tree4b8f7253023daa33de0ce16ee79ded8e7b410830 /source3/client/tree.c
parent3ec5a37280c1e780785439de93522b302f324d24 (diff)
downloadsamba-65d5d7c59a87b4c12c689a3f8d1a9f64f62d2fec.tar.gz
samba-65d5d7c59a87b4c12c689a3f8d1a9f64f62d2fec.tar.bz2
samba-65d5d7c59a87b4c12c689a3f8d1a9f64f62d2fec.zip
Fix sample gtk code. Does this compile ?
Jeremy. (This used to be commit 750d26b7e9ab39663da0c3e6ccc1288fc08c81ea)
Diffstat (limited to 'source3/client/tree.c')
-rw-r--r--source3/client/tree.c78
1 files changed, 40 insertions, 38 deletions
diff --git a/source3/client/tree.c b/source3/client/tree.c
index 3695b06f90..e0b8c91949 100644
--- a/source3/client/tree.c
+++ b/source3/client/tree.c
@@ -68,9 +68,9 @@ static void tree_error_message(gchar *message) {
* workgroup type and return a path from there
*/
-static pstring path_string;
+static char *path_string;
-char *get_path(GtkWidget *item)
+char *get_path(TALLOC_CTX *ctx, GtkWidget *item)
{
GtkWidget *p = item;
struct tree_data *pd;
@@ -92,7 +92,7 @@ char *get_path(GtkWidget *item)
/* Find the parent and extract the data etc ... */
- p = GTK_WIDGET(p->parent);
+ p = GTK_WIDGET(p->parent);
p = GTK_WIDGET(GTK_TREE(p)->tree_owner);
pd = (struct tree_data *)gtk_object_get_user_data(GTK_OBJECT(p));
@@ -104,23 +104,25 @@ char *get_path(GtkWidget *item)
}
- /*
+ /*
* Got a list of comps now, should check that we did not hit a workgroup
* when we got other things as well ... Later
*
* Now, build the path
*/
- pstrcpy( path_string, "smb:/" );
+ TALLOC_FREE(path_string);
+ path_string = talloc_strdup(ctx, "smb:/");
- for (j = i - 1; j >= 0; j--) {
-
- strncat(path_string, "/", sizeof(path_string) - strlen(path_string));
- strncat(path_string, comps[j], sizeof(path_string) - strlen(path_string));
+ if (path_string) {
+ for (j = i - 1; j >= 0; j--) {
+ path_string = talloc_asprintf_append(path_string, "/%s", comps[j]);
+ }
+ }
+ if (path_string) {
+ fprintf(stdout, "Path string = %s\n", path_string);
}
-
- fprintf(stdout, "Path string = %s\n", path_string);
return path_string;
@@ -150,7 +152,8 @@ static void cb_select_child (GtkWidget *root_tree, GtkWidget *child,
char dirbuf[512];
struct smbc_dirent *dirp;
struct stat st1;
- pstring path, path1;
+ char *path;
+ TALLOC_CTX *ctx = talloc_stackframe();
g_print ("select_child called for root tree %p, subtree %p, child %p\n",
root_tree, subtree, child);
@@ -161,31 +164,29 @@ static void cb_select_child (GtkWidget *root_tree, GtkWidget *child,
/* Now, get the private data for the subtree */
- strncpy(path, get_path(child), 1024);
+ path = get_path(ctx, child);
+ if (!path) {
+ gtk_main_quit();
+ TALLOC_FREE(ctx);
+ return;
+ }
if ((dh = smbc_opendir(path)) < 0) { /* Handle error */
-
g_print("cb_select_child: Could not open dir %s, %s\n", path,
strerror(errno));
-
gtk_main_quit();
-
+ TALLOC_FREE(ctx);
return;
-
}
while ((err = smbc_getdents(dh, (struct smbc_dirent *)dirbuf,
sizeof(dirbuf))) != 0) {
-
if (err < 0) {
-
g_print("cb_select_child: Could not read dir %s, %s\n", path,
strerror(errno));
-
gtk_main_quit();
-
+ TALLOC_FREE(ctx);
return;
-
}
dirp = (struct smbc_dirent *)dirbuf;
@@ -240,27 +241,27 @@ static void cb_select_child (GtkWidget *root_tree, GtkWidget *child,
if ((strcmp(dirp->name, ".") != 0) &&
(strcmp(dirp->name, "..") != 0)) {
+ char *path1;
- strncpy(path1, path, sizeof(path1));
- strncat(path1, "/", sizeof(path) - strlen(path));
- strncat(path1, dirp->name, sizeof(path) - strlen(path));
+ path1 = talloc_asprintf(ctx,
+ "%s/%s",
+ path,
+ dirp->name);
+ if (!path1) {
+ gtk_main_quit();
+ TALLOC_FREE(ctx);
+ return;
+ }
if (smbc_stat(path1, &st1) < 0) {
-
if (errno != EBUSY) {
-
- g_print("cb_select_child: Could not stat file %s, %s\n", path1,
+ g_print("cb_select_child: Could not stat file %s, %s\n", path1,
strerror(errno));
-
gtk_main_quit();
-
+ TALLOC_FREE(ctx);
return;
-
- }
- else {
-
+ } else {
strncpy(col2, "Device or resource busy", sizeof(col2));
-
}
}
else {
@@ -276,7 +277,7 @@ static void cb_select_child (GtkWidget *root_tree, GtkWidget *child,
(st1.st_mode&S_IROTH?'r':'-'),
(st1.st_mode&S_IWOTH?'w':'-'),
(st1.st_mode&S_IXOTH?'x':'-'),
- st1.st_mode);
+ st1.st_mode);
snprintf(col3, sizeof(col3), "%u", st1.st_size);
snprintf(col4, sizeof(col4), "%s", ctime(&st1.st_mtime));
}
@@ -295,9 +296,8 @@ static void cb_select_child (GtkWidget *root_tree, GtkWidget *child,
err -= dirlen;
}
-
}
-
+ TALLOC_FREE(ctx);
}
/* Note that this is never called */
@@ -614,6 +614,7 @@ int main( int argc,
gint i;
char dirbuf[512];
struct smbc_dirent *dirp;
+ TALLOC_CTX *frame = talloc_stackframe();
gtk_init (&argc, &argv);
@@ -805,6 +806,7 @@ int main( int argc,
/* Show the window and loop endlessly */
gtk_main();
+ TALLOC_FREE(frame);
return 0;
}
/* example-end */